|
#define | cvFree(ptr) (cvFree_(*(ptr)), *(ptr)=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 | cvReshapeND(arr, header, new_cn, new_dims, new_sizes) |
|
#define | cvZero cvSetZero |
|
#define | cvCvtScale cvConvertScale |
|
#define | cvScale cvConvertScale |
|
#define | cvConvert(src, dst) cvConvertScale( (src), (dst), 1, 0 ) |
|
#define | cvCvtScaleAbs cvConvertScaleAbs |
|
#define | cvAXPY(A, real_scalar, B, C) cvScaleAdd(A, cvRealScalar(real_scalar), B, C) |
|
#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 | cvAbs(src, dst) cvAbsDiffS( (src), (dst), cvScalarAll(0)) |
|
#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 | cvMatMulAdd(src1, src2, src3, dst) cvGEMM( (src1), (src2), 1., (src3), 1., (dst), 0 ) |
|
#define | cvMatMul(src1, src2, dst) cvMatMulAdd( (src1), (src2), NULL, (dst)) |
|
#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_LSQ 8 |
|
#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 /* divide result by size of array */ |
|
#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 /* transform each row individually */ |
|
#define | CV_DXT_MUL_CONJ 8 /* conjugate the second argument of cvMulSpectrums */ |
|
#define | cvFFT cvDFT |
|
#define | CV_FRONT 1 |
|
#define | CV_BACK 0 |
|
#define | cvGraphFindEdge cvFindGraphEdge |
|
#define | cvGraphFindEdgeByPtr cvFindGraphEdgeByPtr |
|
#define | cvGetGraphVtx(graph, idx) (CvGraphVtx*)cvGetSetElem((CvSet*)(graph), (idx)) |
|
#define | cvGraphVtxIdx(graph, vtx) ((vtx)->flags & CV_SET_ELEM_IDX_MASK) |
|
#define | cvGraphEdgeIdx(graph, edge) ((edge)->flags & CV_SET_ELEM_IDX_MASK) |
|
#define | cvGraphGetVtxCount(graph) ((graph)->active_count) |
|
#define | cvGraphGetEdgeCount(graph) ((graph)->edges->active_count) |
|
#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_IS_GRAPH_VERTEX_VISITED(vtx) (((CvGraphVtx*)(vtx))->flags & CV_GRAPH_ITEM_VISITED_FLAG) |
|
#define | CV_IS_GRAPH_EDGE_VISITED(edge) (((CvGraphEdge*)(edge))->flags & CV_GRAPH_ITEM_VISITED_FLAG) |
|
#define | CV_GRAPH_SEARCH_TREE_NODE_FLAG (1 << 29) |
|
#define | CV_GRAPH_FORWARD_EDGE_FLAG (1 << 28) |
|
#define | CV_RGB(r, g, b) cvScalar( (b), (g), (r), 0 ) |
|
#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_NEXT_LINE_POINT(line_iterator) |
|
#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_ErrModeLeaf 0 /* Print error and exit program */ |
|
#define | CV_ErrModeParent 1 /* Print error and continue */ |
|
#define | CV_ErrModeSilent 2 /* Don't print and continue */ |
|
#define | CV_TURN_ON_IPL_COMPATIBILITY() |
|
#define | CV_SET_IMAGE_IO_FUNCTIONS() cvSetImageIOFunctions( cvLoadImage, cvLoadImageM, cvSaveImage, cvShowImage ) |
|
|
typedef struct CvNArrayIterator | CvNArrayIterator |
|
typedef int(CV_CDECL * | CvCmpFunc )(const void *a, const void *b, void *userdata) |
|
typedef struct CvGraphScanner | CvGraphScanner |
|
typedef struct CvFont | CvFont |
|
typedef struct CvTreeNodeIterator | CvTreeNodeIterator |
|
typedef int(CV_CDECL * | CvErrorCallback )(int status, const char *func_name, const char *err_msg, const char *file_name, int line, void *userdata) |
|
typedef void *(CV_CDECL * | CvAllocFunc )(size_t size, void *userdata) |
|
typedef int(CV_CDECL * | CvFreeFunc )(void *pptr, void *userdata) |
|
typedef IplImage *CV_STDCALL * | Cv_iplCreateImageHeader (int, int, int, char *, char *, int, int, int, int, int, IplROI *, IplImage *, void *, IplTileInfo *) |
|
typedef void(CV_STDCALL * | Cv_iplAllocateImageData )(IplImage *, int, int) |
|
typedef void(CV_STDCALL * | Cv_iplDeallocate )(IplImage *, int) |
|
typedef IplROI *(CV_STDCALL * | Cv_iplCreateROI )(int, int, int, int, int) |
|
typedef IplImage *(CV_STDCALL * | Cv_iplCloneImage )(const IplImage *) |
|
typedef IplImage *(CV_CDECL * | CvLoadImageFunc )(const char *filename, int colorness) |
|
typedef CvMat *(CV_CDECL * | CvLoadImageMFunc )(const char *filename, int colorness) |
|
typedef int(CV_CDECL * | CvSaveImageFunc )(const char *filename, const CvArr *image) |
|
typedef void(CV_CDECL * | CvShowImageFunc )(const char *windowname, const CvArr *image) |
|
|
| CVAPI (void *) cvAlloc(size_t size) |
|
| CVAPI (void) cvFree_(void *ptr) |
|
| CVAPI (IplImage *) cvCreateImageHeader(CvSize size |
|
CvSize int int int origin | CV_DEFAULT (0) |
|
CvSize int int int origin int align | CV_DEFAULT (4)) |
|
| CVAPI (int) cvGetImageCOI(const IplImage *image) |
|
| CVAPI (CvRect) cvGetImageROI(const IplImage *image) |
|
| CVAPI (CvMat *) cvCreateMatHeader(int rows |
|
int int int void *data | CV_DEFAULT (NULL) |
|
int int int void *data int step | CV_DEFAULT (CV_AUTOSTEP)) |
|
CV_INLINE void | cvDecRefData (CvArr *arr) |
|
CV_INLINE int | cvIncRefData (CvArr *arr) |
|
CvMat int int int delta_row | CV_DEFAULT (1)) |
|
CV_INLINE CvMat * | cvGetRow (const CvArr *arr, CvMat *submat, int row) |
|
CV_INLINE CvMat * | cvGetCol (const CvArr *arr, CvMat *submat, int col) |
|
| CVAPI (CvMatND *) cvCreateMatNDHeader(int dims |
|
CV_INLINE void | cvReleaseMatND (CvMatND **mat) |
|
| CVAPI (CvSparseMat *) cvCreateSparseMat(int dims |
|
| CVAPI (CvSparseNode *) cvInitSparseMatIterator(const CvSparseMat *mat |
|
CV_INLINE CvSparseNode * | cvGetNextSparseNode (CvSparseMatIterator *mat_iterator) |
|
| CVAPI (uchar *) cvPtr1D(const CvArr *arr |
|
| CVAPI (CvScalar) cvGet1D(const CvArr *arr |
|
| CVAPI (double) cvGetReal1D(const CvArr *arr |
|
| CVAPI (CvSize) cvGetSize(const CvArr *arr) |
|
| CVAPI (CvTermCriteria) cvCheckTermCriteria(CvTermCriteria criteria |
|
CV_INLINE void | cvSubS (const CvArr *src, CvScalar value, CvArr *dst, const CvArr *mask CV_DEFAULT(NULL)) |
|
| CVAPI (float) cvFastArctan(float y |
|
CvRNG double iter_factor | CV_DEFAULT (1.)) |
|
CvArr int method | CV_DEFAULT (CV_LU)) |
|
CvScalar value | CV_DEFAULT (cvRealScalar(1))) |
|
const CvArr *arr2 int norm_type | CV_DEFAULT (CV_L2) |
|
CvArr double a double b | CV_DEFAULT (0.) |
|
CvArr int dim | CV_DEFAULT (-1) |
|
CvArr int dim int op | CV_DEFAULT (CV_REDUCE_SUM)) |
|
| CVAPI (CvMemStorage *) cvCreateMemStorage(int block_size CV_DEFAULT(0)) |
|
| CVAPI (CvString) cvMemStorageAllocString(CvMemStorage *storage |
|
| CVAPI (CvSeq *) cvCreateSeq(int seq_flags |
|
| CVAPI (schar *) cvSeqPush(CvSeq *seq |
|
void CvSlice slice | CV_DEFAULT (CV_WHOLE_SEQ)) |
|
CV_INLINE CvSeq * | cvCloneSeq (const CvSeq *seq, CvMemStorage *storage CV_DEFAULT(NULL)) |
|
| CVAPI (CvSet *) cvCreateSet(int set_flags |
|
CV_INLINE CvSetElem * | cvSetNew (CvSet *set_header) |
|
CV_INLINE void | cvSetRemoveByPtr (CvSet *set_header, void *elem) |
|
CV_INLINE CvSetElem * | cvGetSetElem (const CvSet *set_header, int index) |
|
| CVAPI (CvGraph *) cvCreateGraph(int graph_flags |
|
| CVAPI (CvGraphEdge *) cvFindGraphEdge(const CvGraph *graph |
|
| CVAPI (CvGraphScanner *) cvCreateGraphScanner(CvGraph *graph |
|
CvGraphVtx *vtx int mask | CV_DEFAULT (CV_GRAPH_ALL_ITEMS)) |
|
CvPoint CvPoint CvScalar int
thickness int line_type | CV_DEFAULT (8) |
|
CV_INLINE void | cvEllipseBox (CvArr *img, CvBox2D box, CvScalar color, int thickness CV_DEFAULT(1), int line_type CV_DEFAULT(8), int shift CV_DEFAULT(0)) |
|
CV_INLINE CvFont | cvFont (double scale, int thickness CV_DEFAULT(1)) |
|
CvSeq CvScalar CvScalar int
int thickness int line_type
CvPoint offset | CV_DEFAULT (cvPoint(0, 0))) |
|
| CVAPI (const char *) cvErrorStr(int status) |
|
| CVAPI (CvErrorCallback) cvRedirectError(CvErrorCallback error_handler |
|
| CVAPI (CvFileStorage *) cvOpenFileStorage(const char *filename |
|
const char int const char
*type_name CvAttrList
attributes | CV_DEFAULT (cvAttrList())) |
|
| CVAPI (CvStringHashNode *) cvGetHashedKey(CvFileStorage *fs |
|
| CVAPI (CvFileNode *) cvGetRootFileNode(const CvFileStorage *fs |
|
CV_INLINE int | cvReadInt (const CvFileNode *node, int default_value CV_DEFAULT(0)) |
|
CV_INLINE int | cvReadIntByName (const CvFileStorage *fs, const CvFileNode *map, const char *name, int default_value CV_DEFAULT(0)) |
|
CV_INLINE double | cvReadReal (const CvFileNode *node, double default_value CV_DEFAULT(0.)) |
|
CV_INLINE double | cvReadRealByName (const CvFileStorage *fs, const CvFileNode *map, const char *name, double default_value CV_DEFAULT(0.)) |
|
CV_INLINE const char * | cvReadString (const CvFileNode *node, const char *default_value CV_DEFAULT(NULL)) |
|
CV_INLINE const char * | cvReadStringByName (const CvFileStorage *fs, const CvFileNode *map, const char *name, const char *default_value CV_DEFAULT(NULL)) |
|
CV_INLINE void * | cvReadByName (CvFileStorage *fs, const CvFileNode *map, const char *name, CvAttrList *attributes CV_DEFAULT(NULL)) |
|
| CVAPI (CvTypeInfo *) cvFirstType(void) |
|
| CVAPI (int64) cvGetTickCount(void) |
|