HomeSort by relevance Sort by last modified time
    Searched defs:CvMat (Results 1 - 2 of 2) sorted by null

  /external/opencv/cxcore/include/
cxcore.hpp 217 CvMatrix( int rows, int cols, int type, CvMat* hdr,
227 CvMatrix( CvMat* m )
252 void set( CvMat* m, bool add_ref )
336 operator const CvMat* () const { return matrix; }
337 operator CvMat* () { return matrix; }
348 CvMat* matrix;
cxtypes.h 461 * Matrix type (CvMat) *
543 typedef struct CvMat
579 CvMat;
584 (((const CvMat*)(mat))->type & CV_MAGIC_MASK) == CV_MAT_MAGIC_VAL && \
585 ((const CvMat*)(mat))->cols > 0 && ((const CvMat*)(mat))->rows > 0)
588 (CV_IS_MAT_HDR(mat) && ((const CvMat*)(mat))->data.ptr != NULL)
621 CV_INLINE CvMat cvMat( int rows, int cols, int type, void* data CV_DEFAULT(NULL))
623 CvMat m
    [all...]

Completed in 57 milliseconds