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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user