Home | History | Annotate | Download | only in src

Lines Matching refs:mat

51     CvMat* mat = (CvMat*)arr;
53 if( !CV_IS_MAT( mat ))
56 if( CV_MAT_CN(mat->type) == 1 && mat->width == 2 )
57 mat = cvReshape(mat, &hdr, 2);
59 eltype = CV_MAT_TYPE( mat->type );
65 if( (mat->width != 1 && mat->height != 1) || !CV_IS_MAT_CONT(mat->type))
72 sizeof(CvContour), CV_ELEM_SIZE(eltype), mat->data.ptr,
73 mat->width*mat->height, (CvSeq*)contour_header, block );
82 cv::Mat src = cv::cvarrToMat(srcarr), dst = cv::cvarrToMat(dstarr);