MCPcopy Create free account
hub / github.com/creatale/node-dv / cvCreateMat

Function cvCreateMat

deps/opencv/modules/core/src/array.cpp:90–97  ·  view source on GitHub ↗

Creates CvMat and underlying data

Source from the content-addressed store, hash-verified

88
89// Creates CvMat and underlying data
90CV_IMPL CvMat*
91cvCreateMat( int height, int width, int type )
92{
93 CvMat* arr = cvCreateMatHeader( height, width, type );
94 cvCreateData( arr );
95
96 return arr;
97}
98
99
100static void icvCheckHuge( CvMat* arr )

Callers 7

icvReadMatFunction · 0.85
cvCreatePyramidFunction · 0.85
cvDistTransformFunction · 0.85
cvFloodFillFunction · 0.85
icvHoughCirclesGradientFunction · 0.85
cvLogPolarFunction · 0.85
cvLinearPolarFunction · 0.85

Calls 2

cvCreateMatHeaderFunction · 0.85
cvCreateDataFunction · 0.85

Tested by

no test coverage detected