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