Creates CvMatND and underlying data
| 262 | |
| 263 | // Creates CvMatND and underlying data |
| 264 | CV_IMPL CvMatND* |
| 265 | cvCreateMatND( int dims, const int* sizes, int type ) |
| 266 | { |
| 267 | CvMatND* arr = cvCreateMatNDHeader( dims, sizes, type ); |
| 268 | cvCreateData( arr ); |
| 269 | |
| 270 | return arr; |
| 271 | } |
| 272 | |
| 273 | |
| 274 | // Creates CvMatND header only |
no test coverage detected