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

  /external/opencv/cxcore/include/
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...]
  /external/opencv3/modules/core/include/opencv2/core/
types_c.h 110 It denotes that the function accepts arrays of multiple types, such as IplImage*, CvMat* or even
402 * Matrix type (CvMat) *
421 @deprecated CvMat is now obsolete; consider using Mat instead.
423 typedef struct CvMat
460 CvMat() {}
461 CvMat(const CvMat& m) { memcpy(this, &m, sizeof(CvMat));}
462 CvMat(const cv::Mat& m);
466 CvMat;
    [all...]

Completed in 104 milliseconds