OpenCV
5.0.0alpha
Open Source Computer Vision
|
#include "opencv2/core/cvdef.h"
#include "opencv2/core/cvstd.hpp"
#include "opencv2/core/fwddecl.hpp"
Namespaces | |
namespace | cv |
Macros | |
#define | CV_Check(v, test_expr, msg) |
Example: v == A || v == B. | |
#define | CV_CheckChannels(t, test_expr, msg) |
Example: channel == 1 || channel == 3. | |
#define | CV_CheckChannelsEQ(c1, c2, msg) |
#define | CV_CheckDepth(t, test_expr, msg) |
Example: depth == CV_32F || depth == CV_64F. | |
#define | CV_CheckDepthEQ(d1, d2, msg) |
Check with additional "decoding" of depth values in error message. | |
#define | CV_CheckEQ(v1, v2, msg) |
Supported values of these types: int, float, double. | |
#define | CV_CheckFalse(v, msg) |
Example: v == false. | |
#define | CV_CheckGE(v1, v2, msg) |
#define | CV_CheckGT(v1, v2, msg) |
#define | CV_CheckLE(v1, v2, msg) |
#define | CV_CheckLT(v1, v2, msg) |
#define | CV_CheckNE(v1, v2, msg) |
#define | CV_CheckTrue(v, msg) |
Example: v == true. | |
#define | CV_CheckType(t, test_expr, msg) |
Example: type == CV_8UC1 || type == CV_8UC3. | |
#define | CV_CheckTypeEQ(t1, t2, msg) |
Check with additional "decoding" of type values in error message. | |
#define | CV_DbgCheck(v, test_expr, msg) |
Some complex conditions: CV_Check(src2, src2.empty() || (src2.type() == src1.type() && src2.size() == src1.size()), "src2 should have same size/type as src1") | |
#define | CV_DbgCheckEQ(v1, v2, msg) |
#define | CV_DbgCheckGE(v1, v2, msg) |
#define | CV_DbgCheckGT(v1, v2, msg) |
#define | CV_DbgCheckLE(v1, v2, msg) |
#define | CV_DbgCheckLT(v1, v2, msg) |
#define | CV_DbgCheckNE(v1, v2, msg) |
Functions | |
const char * | cv::depthToString (int depth) |
String | cv::typeToString (int type) |
#define CV_Check | ( | v, | |
test_expr, | |||
msg ) |
Example: v == A || v == B.
#define CV_CheckChannels | ( | t, | |
test_expr, | |||
msg ) |
Example: channel == 1 || channel == 3.
#define CV_CheckChannelsEQ | ( | c1, | |
c2, | |||
msg ) |
#define CV_CheckDepth | ( | t, | |
test_expr, | |||
msg ) |
Example: depth == CV_32F || depth == CV_64F.
#define CV_CheckDepthEQ | ( | d1, | |
d2, | |||
msg ) |
Check with additional "decoding" of depth values in error message.
#define CV_CheckEQ | ( | v1, | |
v2, | |||
msg ) |
Supported values of these types: int, float, double.
#define CV_CheckFalse | ( | v, | |
msg ) |
Example: v == false.
#define CV_CheckGE | ( | v1, | |
v2, | |||
msg ) |
#define CV_CheckGT | ( | v1, | |
v2, | |||
msg ) |
#define CV_CheckLE | ( | v1, | |
v2, | |||
msg ) |
#define CV_CheckLT | ( | v1, | |
v2, | |||
msg ) |
#define CV_CheckNE | ( | v1, | |
v2, | |||
msg ) |
#define CV_CheckTrue | ( | v, | |
msg ) |
Example: v == true.
#define CV_CheckType | ( | t, | |
test_expr, | |||
msg ) |
Example: type == CV_8UC1 || type == CV_8UC3.
#define CV_CheckTypeEQ | ( | t1, | |
t2, | |||
msg ) |
Check with additional "decoding" of type values in error message.
#define CV_DbgCheck | ( | v, | |
test_expr, | |||
msg ) |
Some complex conditions: CV_Check(src2, src2.empty() || (src2.type() == src1.type() && src2.size() == src1.size()), "src2 should have same size/type as src1")
#define CV_DbgCheckEQ | ( | v1, | |
v2, | |||
msg ) |
#define CV_DbgCheckGE | ( | v1, | |
v2, | |||
msg ) |
#define CV_DbgCheckGT | ( | v1, | |
v2, | |||
msg ) |
#define CV_DbgCheckLE | ( | v1, | |
v2, | |||
msg ) |
#define CV_DbgCheckLT | ( | v1, | |
v2, | |||
msg ) |
#define CV_DbgCheckNE | ( | v1, | |
v2, | |||
msg ) |