![]() |
OpenCV
Open Source Computer Vision
|
#include "opencv2/opencv_modules.hpp"
#include <climits>
#include <algorithm>
#include "opencv2/core/cvdef.h"
#include "opencv2/core/cvstd.hpp"
#include "opencv2/core/neon_utils.hpp"
#include "opencv2/core/vsx_utils.hpp"
#include "opencv2/core/check.hpp"
Classes | |
struct | cv::Hamming |
Namespaces | |
cv | |
cv::Error | |
Macros | |
#define | CV_Assert(...) do { CVAUX_CONCAT(CV_Assert_, CV_VA_NUM_ARGS(__VA_ARGS__)) (__VA_ARGS__); } while(0) |
Checks a condition at runtime and throws exception if it fails. More... | |
#define | CV_Assert_1(expr) if(!!(expr)) ; else cv::error( cv::Error::StsAssert, #expr, CV_Func, __FILE__, __LINE__ ) |
#define | CV_Assert_10(expr1, expr2, expr3, expr4, expr5, expr6, expr7, expr8, expr9, expr10) CV_Assert_9(expr1, expr2, expr3, expr4, expr5, expr6, expr7, expr8, expr9 ); CV_Assert_1(expr10) |
#define | CV_Assert_2(expr1, expr2) CV_Assert_1(expr1); CV_Assert_1(expr2) |
#define | CV_Assert_3(expr1, expr2, expr3) CV_Assert_2(expr1, expr2); CV_Assert_1(expr3) |
#define | CV_Assert_4(expr1, expr2, expr3, expr4) CV_Assert_3(expr1, expr2, expr3); CV_Assert_1(expr4) |
#define | CV_Assert_5(expr1, expr2, expr3, expr4, expr5) CV_Assert_4(expr1, expr2, expr3, expr4); CV_Assert_1(expr5) |
#define | CV_Assert_6(expr1, expr2, expr3, expr4, expr5, expr6) CV_Assert_5(expr1, expr2, expr3, expr4, expr5); CV_Assert_1(expr6) |
#define | CV_Assert_7(expr1, expr2, expr3, expr4, expr5, expr6, expr7) CV_Assert_6(expr1, expr2, expr3, expr4, expr5, expr6 ); CV_Assert_1(expr7) |
#define | CV_Assert_8(expr1, expr2, expr3, expr4, expr5, expr6, expr7, expr8) CV_Assert_7(expr1, expr2, expr3, expr4, expr5, expr6, expr7 ); CV_Assert_1(expr8) |
#define | CV_Assert_9(expr1, expr2, expr3, expr4, expr5, expr6, expr7, expr8, expr9) CV_Assert_8(expr1, expr2, expr3, expr4, expr5, expr6, expr7, expr8 ); CV_Assert_1(expr9) |
#define | CV_DbgAssert(expr) |
#define | CV_Error(code, msg) cv::error( code, msg, CV_Func, __FILE__, __LINE__ ) |
Call the error handler. More... | |
#define | CV_Error_(code, args) cv::error( code, cv::format args, CV_Func, __FILE__, __LINE__ ) |
Call the error handler. More... | |
#define | CV_Func "" |
#define | CV_VA_NUM_ARGS(...) CV_VA_NUM_ARGS_HELPER(__VA_ARGS__, 10, 9, 8, 7, 6, 5, 4, 3, 2, 1, 0) |
#define | CV_VA_NUM_ARGS_HELPER(_1, _2, _3, _4, _5, _6, _7, _8, _9, _10, N, ...) N |
Typedefs | |
typedef Hamming | cv::HammingLUT |
Functions | |
bool | cv::Cholesky (float *A, size_t astep, int m, float *b, size_t bstep, int n) |
bool | cv::Cholesky (double *A, size_t astep, int m, double *b, size_t bstep, int n) |
float | cv::cubeRoot (float val) |
Computes the cube root of an argument. More... | |
template<typename _Tp > | |
_Tp | cv::cv_abs (_Tp x) |
int | cv::cv_abs (uchar x) |
int | cv::cv_abs (schar x) |
int | cv::cv_abs (ushort x) |
int | cv::cv_abs (short x) |
void | cv::error (int _code, const String &_err, const char *_func, const char *_file, int _line) |
Signals an error and raises the exception. More... | |
void | cv::errorNoReturn (int _code, const String &_err, const char *_func, const char *_file, int _line) |
float | cv::fastAtan2 (float y, float x) |
Calculates the angle of a 2D vector in degrees. More... | |
int | cv::LU (float *A, size_t astep, int m, float *b, size_t bstep, int n) |
int | cv::LU (double *A, size_t astep, int m, double *b, size_t bstep, int n) |
template<typename _Tp , typename _AccTp > | |
static _AccTp | cv::normInf (const _Tp *a, int n) |
template<typename _Tp , typename _AccTp > | |
static _AccTp | cv::normInf (const _Tp *a, const _Tp *b, int n) |
template<typename _Tp , typename _AccTp > | |
static _AccTp | cv::normL1 (const _Tp *a, int n) |
template<typename _Tp , typename _AccTp > | |
static _AccTp | cv::normL1 (const _Tp *a, const _Tp *b, int n) |
float | cv::normL1 (const float *a, const float *b, int n) |
int | cv::normL1 (const uchar *a, const uchar *b, int n) |
template<typename _Tp , typename _AccTp > | |
static _AccTp | cv::normL2Sqr (const _Tp *a, int n) |
template<typename _Tp , typename _AccTp > | |
static _AccTp | cv::normL2Sqr (const _Tp *a, const _Tp *b, int n) |
static float | cv::normL2Sqr (const float *a, const float *b, int n) |