Home | History | Annotate | Download | only in src

Lines Matching full:dstmat

2152     CvMat dststub, *dstmat;
2182 CV_CALL( dstmat = cvGetMat( dst, &dststub, 0, 0 ));
2183 if( CV_MAT_TYPE( dstmat->type ) != CV_32FC1 )
2186 if( dstmat->cols != img[0]->width - patch_size.width + 1 ||
2187 dstmat->rows != img[0]->height - patch_size.height + 1 )
2192 size = cvGetMatSize(dstmat);
2210 CV_MAT_ELEM( *dstmat, float, y, x ) = (float)result;