Fix typo in types_c.h
This commit is contained in:
parent
d2da7dc3e5
commit
f815bbab24
@ -133,7 +133,7 @@ typedef int CVStatus;
|
|||||||
|
|
||||||
/** @see cv::Error::Code */
|
/** @see cv::Error::Code */
|
||||||
enum {
|
enum {
|
||||||
CV_StsOk= 0, /**< everithing is ok */
|
CV_StsOk= 0, /**< everything is ok */
|
||||||
CV_StsBackTrace= -1, /**< pseudo error for back trace */
|
CV_StsBackTrace= -1, /**< pseudo error for back trace */
|
||||||
CV_StsError= -2, /**< unknown /unspecified error */
|
CV_StsError= -2, /**< unknown /unspecified error */
|
||||||
CV_StsInternal= -3, /**< internal error (bad state) */
|
CV_StsInternal= -3, /**< internal error (bad state) */
|
||||||
@ -143,28 +143,28 @@ enum {
|
|||||||
CV_StsNoConv= -7, /**< iter. didn't converge */
|
CV_StsNoConv= -7, /**< iter. didn't converge */
|
||||||
CV_StsAutoTrace= -8, /**< tracing */
|
CV_StsAutoTrace= -8, /**< tracing */
|
||||||
CV_HeaderIsNull= -9, /**< image header is NULL */
|
CV_HeaderIsNull= -9, /**< image header is NULL */
|
||||||
CV_BadImageSize= -10, /**< image size is invalid */
|
CV_BadImageSize= -10, /**< image size is invalid */
|
||||||
CV_BadOffset= -11, /**< offset is invalid */
|
CV_BadOffset= -11, /**< offset is invalid */
|
||||||
CV_BadDataPtr= -12, /**/
|
CV_BadDataPtr= -12, /**/
|
||||||
CV_BadStep= -13, /**/
|
CV_BadStep= -13, /**/
|
||||||
CV_BadModelOrChSeq= -14, /**/
|
CV_BadModelOrChSeq= -14, /**/
|
||||||
CV_BadNumChannels= -15, /**/
|
CV_BadNumChannels= -15, /**/
|
||||||
CV_BadNumChannel1U= -16, /**/
|
CV_BadNumChannel1U= -16, /**/
|
||||||
CV_BadDepth= -17, /**/
|
CV_BadDepth= -17, /**/
|
||||||
CV_BadAlphaChannel= -18, /**/
|
CV_BadAlphaChannel= -18, /**/
|
||||||
CV_BadOrder= -19, /**/
|
CV_BadOrder= -19, /**/
|
||||||
CV_BadOrigin= -20, /**/
|
CV_BadOrigin= -20, /**/
|
||||||
CV_BadAlign= -21, /**/
|
CV_BadAlign= -21, /**/
|
||||||
CV_BadCallBack= -22, /**/
|
CV_BadCallBack= -22, /**/
|
||||||
CV_BadTileSize= -23, /**/
|
CV_BadTileSize= -23, /**/
|
||||||
CV_BadCOI= -24, /**/
|
CV_BadCOI= -24, /**/
|
||||||
CV_BadROISize= -25, /**/
|
CV_BadROISize= -25, /**/
|
||||||
CV_MaskIsTiled= -26, /**/
|
CV_MaskIsTiled= -26, /**/
|
||||||
CV_StsNullPtr= -27, /**< null pointer */
|
CV_StsNullPtr= -27, /**< null pointer */
|
||||||
CV_StsVecLengthErr= -28, /**< incorrect vector length */
|
CV_StsVecLengthErr= -28, /**< incorrect vector length */
|
||||||
CV_StsFilterStructContentErr= -29, /**< incorr. filter structure content */
|
CV_StsFilterStructContentErr= -29, /**< incorr. filter structure content */
|
||||||
CV_StsKernelStructContentErr= -30, /**< incorr. transform kernel content */
|
CV_StsKernelStructContentErr= -30, /**< incorr. transform kernel content */
|
||||||
CV_StsFilterOffsetErr= -31, /**< incorrect filter offset value */
|
CV_StsFilterOffsetErr= -31, /**< incorrect filter offset value */
|
||||||
CV_StsBadSize= -201, /**< the input/output structure size is incorrect */
|
CV_StsBadSize= -201, /**< the input/output structure size is incorrect */
|
||||||
CV_StsDivByZero= -202, /**< division by zero */
|
CV_StsDivByZero= -202, /**< division by zero */
|
||||||
CV_StsInplaceNotSupported= -203, /**< in-place operation is not supported */
|
CV_StsInplaceNotSupported= -203, /**< in-place operation is not supported */
|
||||||
|
Loading…
x
Reference in New Issue
Block a user