1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

C-API cleanup: core module tests

This commit is contained in:
Maksim Shabunin
2024-11-11 13:06:37 +03:00
parent 979428d590
commit 2d9c0c8592
12 changed files with 73 additions and 2374 deletions
@@ -220,8 +220,6 @@ allocated using cvCreateData or set explicitly to user-allocated data via cvSetD
*/
CVAPI(CvMat*) cvCreateMatHeader( int rows, int cols, int type );
#define CV_AUTOSTEP 0x7fffffff
/** @brief Initializes a pre-allocated matrix header.
This function is often used to process raw data with OpenCV matrix functions. For example, the
@@ -521,6 +521,8 @@ Cv64suf;
#define CV_ELEM_SIZE(type) (CV_MAT_CN(type)*CV_ELEM_SIZE1(type))
#define CV_AUTOSTEP 0x7fffffff
#ifndef MIN
# define MIN(a,b) ((a) > (b) ? (b) : (a))
#endif