Searched refs:cvCreateMat (Results 76 - 100 of 102) sorted by relevance

12345

/external/opencv/cvaux/src/
H A Dcvepilines.cpp3639 CvMat* matrW = cvCreateMat(3,3,CV_MAT32F);
3640 CvMat* matrU = cvCreateMat(3,3,CV_MAT32F);
3641 CvMat* matrV = cvCreateMat(3,3,CV_MAT32F);
3674 CvMat* invCM2 = cvCreateMat(3,3,CV_MAT32F);
3675 CvMat* tmpMatr = cvCreateMat(3,3,CV_MAT32F);
3676 CvMat* invCM1T = cvCreateMat(3,3,CV_MAT32F);
/external/opencv/cv/src/
H A Dcvsmooth.cpp1068 CV_CALL( temp = cvCreateMat( src->rows + radius*2,
1195 CV_CALL( temp = cvCreateMat( src->rows + radius*2,
H A Dcvmorph.cpp233 CV_CALL( element = cvCreateMat( _ksize.height, _ksize.width, CV_8UC1 ));
H A Dcvpyramids.cpp1243 pyramid[i] = cvCreateMat( layer_size.height, layer_size.width, src->type );
H A Dcvshapedescr.cpp800 CV_CALL( D = cvCreateMat( n, 6, CV_64F ));
H A Dcvfloodfill.cpp1106 tempMask = cvCreateMat( size.height + 2, (size.width + 9) & -8, CV_8UC1 );
H A Dcvimgwarp.cpp2173 CV_CALL( mapx = cvCreateMat( dsize.height, dsize.width, CV_32F ));
2174 CV_CALL( mapy = cvCreateMat( dsize.height, dsize.width, CV_32F ));
H A Dcvhistogram.cpp2332 CV_CALL( lut = cvCreateMat( 1, 256, CV_8UC1 ));
/external/opencv3/apps/createsamples/
H A Dutility.cpp1660 sample = scaled_sample = cvCreateMat( winheight, winwidth, CV_8UC1 );
1663 scaled_sample = cvCreateMat( MAX( 1, cvCeil( scale * winheight ) ),
/external/opencv3/modules/highgui/src/
H A Dwindow_gtk.cpp126 widget->original_image = cvCreateMat( mat->rows, mat->cols, CV_8UC3 );
341 image_widget->scaled_image = cvCreateMat( scaled_image_size.height, scaled_image_size.width, CV_8UC3 );
H A Dwindow_carbon.cpp414 window->image = cvCreateMat( image->rows, image->cols, CV_8UC3 );
H A Dwindow_QT.cpp2311 image2Draw_mat = cvCreateMat(viewport()->height(), viewport()->width(), CV_8UC3);
2411 image2Draw_mat = cvCreateMat(mat->rows, mat->cols, CV_8UC3);
H A Dwindow_cocoa.mm829 cvimage = cvCreateMat(arrMat->rows, arrMat->cols, CV_8UC3);
/external/opencv/cxcore/src/
H A Dcxmatmul.cpp1810 CV_CALL( lut = cvCreateMat( 1, 256, type ));
2549 CV_CALL( tempvec = cvCreateMat( avg->rows, avg->cols, dsttype ));
2584 CV_CALL( tempvec = cvCreateMat( vec->rows, vec->cols, dsttype ));
3169 CV_CALL( src2 = cvCreateMat( src->rows, src->cols, src->type ));
H A Dcxsumpixels.cpp921 CV_CALL( dst = temp = cvCreateMat( dst->rows, dst->cols, ttype ));
H A Dcxarray.cpp96 cvCreateMat( int height, int width, int type ) function
100 CV_FUNCNAME( "cvCreateMat" );
H A Dcxpersistence.cpp3600 CV_CALL( mat = cvCreateMat( rows, cols, elem_type ));
/external/opencv3/modules/imgcodecs/src/
H A Dutils.cpp627 temp = cvCreateMat( src->height, src->width,
/external/opencv/ml/src/
H A Dmlsvm.cpp1377 CV_CALL( class_weights = cvCreateMat( cw->rows, cw->cols, CV_64F ));
1736 responses_local = cvCreateMat( 1, trainset_size, CV_MAT_TYPE(responses->type) );
/external/opencv3/modules/imgproc/test/
H A Dtest_imgwarp.cpp279 CvMat* x_idx = cvCreateMat( 1, dst->cols, CV_32SC1 );
280 CvMat* y_idx = cvCreateMat( 1, dst->rows, CV_32SC1 );
/external/opencv/cxcore/include/
H A Dcxcore.h143 CVAPI(CvMat*) cvCreateMat( int rows, int cols, int type );
/external/opencv3/modules/core/include/opencv2/core/
H A Dcore_c.h216 @param type Type of the matrix elements, see cvCreateMat
249 @param type Type of the matrix elements, see cvCreateMat .
272 CVAPI(CvMat*) cvCreateMat( int rows, int cols, int type );
435 @param type Type of array elements, see cvCreateMat
449 @param type Type of array elements, see cvCreateMat .
458 @param type Type of array elements, see cvCreateMat
856 CvMat* mat = cvCreateMat(3, 3, CV_32F);
2129 CvMat* mat = cvCreateMat( 3, 3, CV_32F );
/external/opencv3/modules/imgproc/src/
H A Dimgwarp.cpp6482 mapx.reset(cvCreateMat( dsize.height, dsize.width, CV_32F ));
6483 mapy.reset(cvCreateMat( dsize.height, dsize.width, CV_32F ));
6608 mapx.reset(cvCreateMat( dsize.height, dsize.width, CV_32F ));
6609 mapy.reset(cvCreateMat( dsize.height, dsize.width, CV_32F ));
H A Dpyramids.cpp1537 pyramid[i] = cvCreateMat( layer_size.height, layer_size.width, src->type );
/external/opencv3/modules/core/src/
H A Darray.cpp97 cvCreateMat( int height, int width, int type ) function

Completed in 2253 milliseconds

12345