Go to the source code of this file.
Classes | |
struct | _CvTrianAttr |
struct | CvFilterState |
struct | CvHidHaarFeature |
struct | CvHidHaarTreeNode |
struct | CvHidHaarClassifier |
struct | CvHidHaarStageClassifier |
struct | CvHidHaarClassifierCascade |
Defines | |
#define | CV_FAST_CAST_8U(t) (assert(-256 <= (t) || (t) <= 512), icvSaturate8u[(t)+256]) |
#define | CV_CALC_MIN_8U(a, b) (a) -= CV_FAST_CAST_8U((a) - (b)) |
#define | CV_CALC_MAX_8U(a, b) (a) += CV_FAST_CAST_8U((b) - (a)) |
#define | CV_8TO32F(x) icv8x32fTab_cv[(x)+128] |
#define | CV_8TO32F_SQR(x) icv8x32fSqrTab[(x)+128] |
#define | CV_HIST_DEFAULT_TYPE CV_32F |
#define | _CvConvState CvFilterState |
#define | IPCV_COPY_BORDER(bordertype, flavor, arrtype) |
#define | IPCV_COPY_CONST_BORDER_C1(flavor, arrtype) |
#define | IPCV_COPY_CONST_BORDER_CN(flavor, arrtype) |
#define | IPCV_MOMENTS(suffix, ipp_suffix, cn) |
#define | IPCV_ACCUM(flavor, arrtype, acctype) |
#define | ICV_PYRDOWN(flavor, cn) |
#define | ICV_PYRUP(flavor, cn) |
#define | IPCV_RESIZE(flavor, cn) |
#define | IPCV_WARPAFFINE_BACK(flavor, cn) |
#define | IPCV_WARPPERSPECTIVE_BACK(flavor, cn) |
#define | IPCV_WARPPERSPECTIVE(flavor, cn) |
#define | IPCV_REMAP(flavor, cn) |
#define | IPCV_MORPHOLOGY(minmaxtype, morphtype, flavor, cn) |
#define | IPCV_FILTER_MEDIAN(flavor, cn) |
#define | IPCV_FILTER_BOX(flavor, cn) |
#define | IPCV_FILTER_SOBEL(suffix, ipp_suffix, flavor) |
#define | IPCV_FILTER_SCHARR(suffix, ipp_suffix, flavor) |
#define | IPCV_FILTER(suffix, ipp_suffix, cn, ksizetype, anchortype) |
#define | IPCV_COLOR(funcname, ipp_funcname, flavor) |
#define | ICV_MATCHTEMPLATE(flavor, arrtype) |
#define | ICV_UNDISTORT_RADIAL(flavor, cn, arrtype) |
#define | ICV_COPY_SUBPIX(flavor, cn, srctype, dsttype) |
#define | icvCopyVector(src, dst, len) memcpy( (dst), (src), (len)*sizeof((dst)[0])) |
#define | icvSetZero(dst, len) memset( (dst), 0, (len)*sizeof((dst)[0])) |
#define | icvCopyVector_32f(src, len, dst) memcpy((dst),(src),(len)*sizeof(float)) |
#define | icvSetZero_32f(dst, cols, rows) memset((dst),0,(rows)*(cols)*sizeof(float)) |
#define | icvCopyVector_64d(src, len, dst) memcpy((dst),(src),(len)*sizeof(double)) |
#define | icvSetZero_64d(dst, cols, rows) memset((dst),0,(rows)*(cols)*sizeof(double)) |
#define | icvCopyMatrix_32f(src, w, h, dst) memcpy((dst),(src),(w)*(h)*sizeof(float)) |
#define | icvCopyMatrix_64d(src, w, h, dst) memcpy((dst),(src),(w)*(h)*sizeof(double)) |
#define | icvCreateVector_32f(len) (float*)cvAlloc( (len)*sizeof(float)) |
#define | icvCreateVector_64d(len) (double*)cvAlloc( (len)*sizeof(double)) |
#define | icvCreateMatrix_32f(w, h) (float*)cvAlloc( (w)*(h)*sizeof(float)) |
#define | icvCreateMatrix_64d(w, h) (double*)cvAlloc( (w)*(h)*sizeof(double)) |
#define | icvDeleteVector(vec) cvFree( (void**)&(vec) ) |
#define | icvDeleteMatrix icvDeleteVector |
#define | icvAddMatrix_32f(src1, src2, dst, w, h) icvAddVector_32f( (src1), (src2), (dst), (w)*(h)) |
#define | icvSubMatrix_32f(src1, src2, dst, w, h) icvSubVector_32f( (src1), (src2), (dst), (w)*(h)) |
#define | icvNormVector_32f(src, len) sqrt(icvDotProduct_32f( src, src, len )) |
#define | icvNormVector_64d(src, len) sqrt(icvDotProduct_64d( src, src, len )) |
#define | icvDeleteMatrix icvDeleteVector |
#define | icvCheckVector_64f(ptr, len) |
#define | icvCheckVector_32f(ptr, len) |
#define | icvAddMatrix_64d(src1, src2, dst, w, h) icvAddVector_64d( (src1), (src2), (dst), (w)*(h)) |
#define | icvSubMatrix_64d(src1, src2, dst, w, h) icvSubVector_64d( (src1), (src2), (dst), (w)*(h)) |
#define | m(y, x) mat[(y)*3 + (x)] |
#define | icvTransformVector_32f(matr, src, dst, w, h) icvMulMatrix_32f( matr, w, h, src, 1, w, dst ) |
#define | icvTransformVector_64d(matr, src, dst, w, h) icvMulMatrix_64d( matr, w, h, src, 1, w, dst ) |
#define | icvScaleMatrix_32f(src, dst, w, h, scale) icvScaleVector_32f( (src), (dst), (w)*(h), (scale) ) |
#define | icvScaleMatrix_64d(src, dst, w, h, scale) icvScaleVector_64d( (src), (dst), (w)*(h), (scale) ) |
#define | icvDotProduct_64d icvDotProduct_64f |
#define | _CV_BINTREE_LIST() |
#define | ICV_KERNEL_TYPE_MASK (15<<16) |
#define | ICV_GENERIC_KERNEL (0<<16) |
#define | ICV_SEPARABLE_KERNEL (1<<16) |
#define | ICV_BINARY_KERNEL (2<<16) |
#define | ICV_KERNEL_TYPE(flags) ((flags) & ICV_KERNEL_TYPE_MASK) |
#define | ICV_MAKE_SEPARABLE_KERNEL(x_type, y_type) (ICV_SEPARABLE_KERNEL | ((x_type)&255) | (((y_type)&255) << 8)) |
#define | ICV_X_KERNEL_TYPE(flags) ((flags) & 255) |
#define | ICV_Y_KERNEL_TYPE(flags) (((flags) >> 8) & 255) |
#define | ICV_SYMMETRIC_KERNEL 1 |
#define | ICV_ASYMMETRIC_KERNEL 2 |
#define | ICV_1_2_1_KERNEL (4*1+ICV_SYMMETRIC_KERNEL) |
#define | ICV_m1_0_1_KERNEL (4*2+ICV_ASYMMETRIC_KERNEL) |
#define | ICV_1_m2_1_KERNEL (4*3+ICV_SYMMETRIC_KERNEL) |
#define | ICV_3_10_3_KERNEL (4*4+ICV_SYMMETRIC_KERNEL) |
#define | ICV_DEFAULT_GAUSSIAN_KERNEL ICV_SYMMETRIC_KERNEL |
#define | ICV_CUSTOM_GAUSSIAN_KERNEL (4+ICV_SYMMETRIC_KERNEL) |
#define | ICV_MAKE_BINARY_KERNEL(shape) (ICV_BINARY_KERNEL | (int)(shape)) |
#define | ICV_BINARY_KERNEL_SHAPE(flags) ((flags) & 255) |
#define | CV_COPY(dst, src, len, idx) for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (src)[idx] |
#define | CV_SET(dst, val, len, idx) for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (val) |
#define | icvBlur_32f_C1R icvBlur_32f_CnR |
#define | CV_CALC_MIN(a, b) if((a) > (b)) (a) = (b) |
#define | CV_CALC_MAX(a, b) if((a) < (b)) (a) = (b) |
#define | CV_MORPH_ALIGN 4 |
#define | CvMorphFunc CvFilterFunc |
#define | CV_WHOLE 0 |
#define | CV_START 1 |
#define | CV_END 2 |
#define | CV_MIDDLE 4 |
#define | ICV_WARP_SHIFT 10 |
#define | ICV_WARP_MASK ((1 << ICV_WARP_SHIFT) - 1) |
#define | ICV_LINEAR_TAB_SIZE (ICV_WARP_MASK+1) |
#define | ICV_CUBIC_TAB_SIZE (ICV_WARP_MASK+1) |
#define | CV_ADJUST_FEATURES 1 |
#define | CV_ADJUST_WEIGHTS 0 |
Typedefs | |
typedef unsigned char | uchar |
typedef unsigned short | ushort |
typedef int | srcstep |
typedef int void * | dst |
typedef int void int | dststep |
typedef int void int CvSize | roi |
typedef int void int CvSize int | aperture |
typedef int | srcstep |
typedef int void * | dst |
typedef int void int | dststep |
typedef int void int CvSize | roi |
typedef int | src_step |
typedef int void * | dst |
typedef int void int | dst_step |
typedef int void int CvSize * | size |
typedef int void int CvSize struct CvFilterState * | state |
typedef int void int CvSize struct CvFilterState int | stage |
typedef CvStatus(CV_STDCALL *) | CvCopyNonConstBorderFunc (const void *src, int srcstep, CvSize srcsize, void *dst, int dststep, CvSize dstsize, int top, int left) |
typedef CvStatus(CV_STDCALL *) | CvCopyConstBorderFunc_Cn (const void *src, int srcstep, CvSize srcsize, void *dst, int dststep, CvSize dstsize, int top, int left, const void *value) |
typedef int | sumtype |
typedef double | sqsumtype |
Functions | |
CV_INLINE CvDataType | icvDepthToDataType (int type) |
CV_EXTERN_C_FUNCPTR (void(CV_CDECL *CvWriteNodeFunction)(void *seq, void *node)) typedef struct CvPyramid | |
IPCVAPI_EX (CvStatus, icvMomentInitAlloc_64f,"ippiMomentInitAlloc_64f", CV_PLUGINS1(CV_PLUGIN_IPPI),(void **momentstate, CvHintAlgorithm hint)) IPCVAPI_EX(CvStatus | |
CV_PLUGINS1 (CV_PLUGIN_IPPI) | |
void *momentstate | IPCVAPI_EX (CvStatus, icvGetSpatialMoment_64f,"ippiGetSpatialMoment_64f", CV_PLUGINS1(CV_PLUGIN_IPPI),(const void *momentstate, int mOrd, int nOrd, int nChannel, CvPoint roiOffset, double *value)) IPCVAPI_EX(CvStatus |
void *momentstate | CV_PLUGINS1 (CV_PLUGIN_IPPCV) |
void *momentstate int CvDataType int int *bufSize | IPCVAPI_EX (CvStatus, icvPyrUpGetBufSize_Gauss5x5,"ippiPyrUpGetBufSize_Gauss5x5", CV_PLUGINS1(CV_PLUGIN_IPPCV),(int roiWidth, CvDataType dataType, int channels, int *bufSize)) IPCVAPI_EX(CvStatus |
IPCVAPI_EX (CvStatus, icvDistanceTransform_3x3_8u32f_C1R,"ippiDistanceTransform_3x3_8u32f_C1R", CV_PLUGINS1(CV_PLUGIN_IPPCV),(const uchar *pSrc, int srcStep, float *pDst, int dstStep, CvSize roiSize, const float *pMetrics)) IPCVAPI_EX(CvStatus | |
const uchar int float int CvSize const float *pMetrics | IPCVAPI_EX (CvStatus, icvCompareC_8u_C1R,"ippiCompareC_8u_C1R", CV_PLUGINS1(CV_PLUGIN_IPPI),(const uchar *src1, int srcstep1, uchar scalar, uchar *dst, int dststep, CvSize size, int cmp_op)) IPCVAPI_EX(CvStatus |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size | IPCVAPI_EX (CvStatus, icvThreshold_GTVal_8u_C1R,"ippiThreshold_GTVal_8u_C1R", CV_PLUGINS1(CV_PLUGIN_IPPI),(const uchar *pSrc, int srcstep, uchar *pDst, int dststep, CvSize size, uchar threshold, uchar value)) IPCVAPI_EX(CvStatus |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value | IPCVAPI_EX (CvStatus, icvThreshold_LTVal_8u_C1R,"ippiThreshold_LTVal_8u_C1R", CV_PLUGINS1(CV_PLUGIN_IPPI),(const uchar *pSrc, int srcstep, uchar *pDst, int dststep, CvSize size, uchar threshold, uchar value)) IPCVAPI_EX(CvStatus |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value | IPCVAPI_EX (CvStatus, icvCannyGetSize,"ippiCannyGetSize", 0,(CvSize roiSize, int *bufferSize)) IPCVAPI_EX(CvStatus |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer | IPCVAPI_EX (CvStatus, icvUndistortGetSize,"ippiUndistortGetSize", CV_PLUGINS1(CV_PLUGIN_IPPCV),(CvSize roiSize, int *pBufsize)) IPCVAPI_EX(CvStatus |
IPCVAPI_EX (CvStatus, icvCopySubpix_32f_C1R,"ippiCopySubpix_32f_C1R", 0,(const float *pSrc, int srcStep, float *pDst, int dstStep, CvSize size, float dx, float dy)) IPCVAPI_EX(CvStatus | |
void CvSize int int hint | IPCVAPI_EX (CvStatus, icvOpticalFlowPyrLKFree_8u_C1R,"ippiOpticalFlowPyrLKFree_8u_C1R", CV_PLUGINS1(CV_PLUGIN_IPPCV),(void *pState)) IPCVAPI_EX(CvStatus |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state | IPCVAPI_EX (CvStatus, icvIntegral_8u32s_C1R,"ippiIntegral_8u32s_C1R", CV_PLUGINS1(CV_PLUGIN_IPPCV),(const uchar *pSrc, int srcStep, int *pDst, int dstStep, CvSize roiSize, int val)) IPCVAPI_EX(CvStatus |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr | IPCVAPI_EX (CvStatus, icvRectStdDev_32s32f_C1R,"ippiRectStdDev_32s32f_C1R", CV_PLUGINS1(CV_PLUGIN_IPPCV),(const int *pSrc, int srcStep, const double *pSqr, int sqrStep, float *pDst, int dstStep, CvSize roiSize, CvRect rect)) IPCVAPI_EX(CvStatus |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length | IPCVAPI_EX (CvStatus, icvHaarClassifierFree_32f,"ippiHaarClassifierFree_32f", CV_PLUGINS1(CV_PLUGIN_IPPCV),(void *pState)) IPCVAPI_EX(CvStatus |
CV_INLINE double | icvSum_32f (const float *src, int len) |
CV_INLINE double | icvDotProduct_32f (const float *src1, const float *src2, int len) |
CV_INLINE double | icvDotProduct_64f (const double *src1, const double *src2, int len) |
CV_INLINE void | icvMulVectors_32f (const float *src1, const float *src2, float *dst, int len) |
CV_INLINE void | icvMulVectors_64d (const double *src1, const double *src2, double *dst, int len) |
CV_INLINE void | icvAddVector_32f (const float *src1, const float *src2, float *dst, int len) |
CV_INLINE void | icvAddVector_64d (const double *src1, const double *src2, double *dst, int len) |
CV_INLINE void | icvSubVector_32f (const float *src1, const float *src2, float *dst, int len) |
CV_INLINE void | icvSubVector_64d (const double *src1, const double *src2, double *dst, int len) |
CV_INLINE void | icvSetIdentity_32f (float *dst, int w, int h) |
CV_INLINE void | icvSetIdentity_64d (double *dst, int w, int h) |
CV_INLINE void | icvTrace_32f (const float *src, int w, int h, float *trace) |
CV_INLINE void | icvTrace_64d (const double *src, int w, int h, double *trace) |
CV_INLINE void | icvScaleVector_32f (const float *src, float *dst, int len, double scale) |
CV_INLINE void | icvScaleVector_64d (const double *src, double *dst, int len, double scale) |
CV_INLINE void | icvTransposeMatrix_32f (const float *src, int w, int h, float *dst) |
CV_INLINE void | icvTransposeMatrix_64d (const double *src, int w, int h, double *dst) |
CV_INLINE void | icvDetMatrix3x3_64d (const double *mat, double *det) |
CV_INLINE void | icvMulMatrix_32f (const float *src1, int w1, int h1, const float *src2, int w2, int h2, float *dst) |
CV_INLINE void | icvMulMatrix_64d (const double *src1, int w1, int h1, const double *src2, int w2, int h2, double *dst) |
CV_INLINE void | icvInvertMatrix_64d (double *A, int n, double *invA) |
CV_INLINE void | icvMulTransMatrixR_64d (double *src, int width, int height, double *dst) |
CV_INLINE void | icvMulTransMatrixL_64d (double *src, int width, int height, double *dst) |
CV_INLINE void | icvMulTransMatrixR_32f (float *src, int width, int height, float *dst) |
CV_INLINE void | icvMulTransMatrixL_32f (float *src, int width, int height, float *dst) |
CV_INLINE void | icvCvt_32f_64d (const float *src, double *dst, int len) |
CV_INLINE void | icvCvt_64d_32f (const double *src, float *dst, int len) |
CV_INLINE float | icvDistanceL2_32f (CvPoint2D32f pt1, CvPoint2D32f pt2) |
int | icvIntersectLines (double x1, double dx1, double y1, double dy1, double x2, double dx2, double y2, double dy2, double *t2) |
void | icvCreateCenterNormalLine (CvSubdiv2DEdge edge, double *a, double *b, double *c) |
void | icvIntersectLines3 (double *a0, double *b0, double *c0, double *a1, double *b1, double *c1, CvPoint2D32f *point) |
CvStatus | icvApproximateChainTC89 (CvChain *chain, int header_size, CvMemStorage *storage, CvSeq **contour, int method) |
void | icvSepConvSmall3_32f (float *src, int src_step, float *dst, int dst_step, CvSize src_size, const float *kx, const float *ky, float *buffer) |
CvFilterState * | icvFilterInitAlloc (int roiWidth, CvDataType dataType, int channels, CvSize elSize, CvPoint elAnchor, const void *elData, int elementFlags) |
void | icvFilterFree (CvFilterState **morphState) |
CvFilterState * | icvSobelInitAlloc (int roiwidth, int depth, int kerSize, int origin, int dx, int dy) |
CvStatus CV_STDCALL | icvSobel_8u16s_C1R (const uchar *pSrc, int srcStep, short *pDst, int dstStep, CvSize *roiSize, struct CvFilterState *state, int stage) |
CvStatus CV_STDCALL | icvSobel_32f_C1R (const float *pSrc, int srcStep, float *pDst, int dstStep, CvSize *roiSize, struct CvFilterState *state, int stage) |
CvFilterState * | icvBlurInitAlloc (int roiWidth, int depth, int channels, int kerSize) |
CvStatus CV_STDCALL | icvBlur_8u16s_C1R (const uchar *pSrc, int srcStep, short *pDst, int dstStep, CvSize *roiSize, struct CvFilterState *state, int stage) |
CvStatus CV_STDCALL | icvBlur_32f_CnR (const float *pSrc, int srcStep, float *pDst, int dstStep, CvSize *roiSize, struct CvFilterState *state, int stage) |
typedef | CvStatus (CV_STDCALL *CvSobelFixedIPPFunc)(const void *src |
CvCopyNonConstBorderFunc | icvGetCopyNonConstBorderFunc (int pixsize, int bordertype=IPL_BORDER_REPLICATE) |
CvCopyConstBorderFunc_Cn | icvGetCopyConstBorderFunc_Cn (int pixsize) |
CvMat * | icvIPPFilterInit (const CvMat *src, int stripe_size, CvSize ksize) |
int | icvIPPFilterNextStripe (const CvMat *src, CvMat *temp, int y, CvSize ksize, CvPoint anchor) |
int | icvIPPSepFilter (const CvMat *src, CvMat *dst, const CvMat *kernelX, const CvMat *kernelY, CvPoint anchor) |
void | icvInitLinearCoeffTab () |
void | icvInitCubicCoeffTab () |
CvStatus CV_STDCALL | icvGetRectSubPix_8u_C1R (const uchar *src, int src_step, CvSize src_size, uchar *dst, int dst_step, CvSize win_size, CvPoint2D32f center) |
CvStatus CV_STDCALL | icvGetRectSubPix_8u32f_C1R (const uchar *src, int src_step, CvSize src_size, float *dst, int dst_step, CvSize win_size, CvPoint2D32f center) |
CvStatus CV_STDCALL | icvGetRectSubPix_32f_C1R (const float *src, int src_step, CvSize src_size, float *dst, int dst_step, CvSize win_size, CvPoint2D32f center) |
static int | is_equal (const void *_r1, const void *_r2, void *) |
CvHidHaarClassifierCascade * | icvCreateHidHaarClassifierCascade (CvHaarClassifierCascade *cascade) |
CvSeq * | myHaarDetectObjects (const CvArr *_img, CvHaarClassifierCascade *cascade, CvMemStorage *storage, double scale_factor, int min_neighbors, int flags, CvSize min_size, double *pRanges, double pPan, double pTilt, double pMinHeight, double pMaxHeight, IplImage *pImg, double pMinSize, double pMaxSize) |
Variables | |
const uchar | icvSaturate8u [] |
const float | icv8x32fTab_cv [] |
const float | icv8x32fSqrTab [] |
CvPyramid | |
icvMomentFree_64f | |
ippiMomentFree_64f | |
void *momentstate | icvPyrDownGetBufSize_Gauss5x5 |
void *momentstate | ippiPyrDownGetBufSize_Gauss5x5 |
void *momentstate int | roiWidth |
void *momentstate int CvDataType | dataType |
void *momentstate int CvDataType int | channels |
void *momentstate int CvDataType int int *bufSize | icvUpdateMotionHistory_8u32f_C1IR |
void *momentstate int CvDataType int int *bufSize | ippiUpdateMotionHistory_8u32f_C1IR |
void *momentstate int CvDataType int int *bufSize const uchar * | silIm |
void *momentstate int CvDataType int int *bufSize const uchar int | silStep |
void *momentstate int CvDataType int int *bufSize const uchar int float * | mhiIm |
void *momentstate int CvDataType int int *bufSize const uchar int float int | mhiStep |
void *momentstate int CvDataType int int *bufSize const uchar int float int CvSize | size |
void *momentstate int CvDataType int int *bufSize const uchar int float int CvSize float | timestamp |
icvDistanceTransform_5x5_8u32f_C1R | |
ippiDistanceTransform_5x5_8u32f_C1R | |
const uchar * | pSrc |
const uchar int | srcStep |
const uchar int float * | pDst |
const uchar int float int | dstStep |
const uchar int float int CvSize | roiSize |
const uchar int float int CvSize const float *pMetrics | icvAndC_8u_C1R |
const uchar int float int CvSize const float *pMetrics | ippiAndC_8u_C1R |
const uchar int float int CvSize const float *pMetrics const uchar * | src1 |
const uchar int float int CvSize const float *pMetrics const uchar int | srcstep1 |
const uchar int float int CvSize const float *pMetrics const uchar int uchar | scalar |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar * | dst |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int | dststep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size | icvThreshold_GTVal_32f_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size | ippiThreshold_GTVal_32f_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float * | pSrc |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int | srcstep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float * | pDst |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int | dststep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize | size |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float | threshold |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value | icvThreshold_LTVal_32f_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value | ippiThreshold_LTVal_32f_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float * | pSrc |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int | srcstep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float * | pDst |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int | dststep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize | size |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float | threshold |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value | icvCanny_16s8u_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value | ippiCanny_16s8u_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short * | pSrcDx |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int | srcDxStep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short * | pSrcDy |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int | srcDyStep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar * | pDstEdges |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int | dstEdgeStep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize | roiSize |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float | lowThresh |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float | highThresh |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer | icvCreateMapCameraUndistort_32f_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer | ippiCreateMapCameraUndistort_32f_C1R |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float * | pxMap |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int | xStep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float * | pyMap |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int | yStep |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize | roiSize |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float | fx |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float | fy |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float float | cx |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float float float | cy |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float float float float | k1 |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float float float float float | k2 |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float float float float float float | p1 |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void *pBuffer float int float int CvSize float float float float float float float float | p2 |
icvOpticalFlowPyrLKInitAlloc_8u_C1R | |
ippiOpticalFlowPyrLKInitAlloc_8u_C1R | |
void ** | ppState |
void CvSize | roiSize |
void CvSize int | winSize |
void CvSize int int hint | icvOpticalFlowPyrLK_8u_C1R |
void CvSize int int hint | ippiOpticalFlowPyrLK_8u_C1R |
void CvSize int int hint CvPyramid * | pPyr1 |
void CvSize int int hint CvPyramid CvPyramid * | pPyr2 |
void CvSize int int hint CvPyramid CvPyramid const float * | pPrev |
void CvSize int int hint CvPyramid CvPyramid const float float * | pNext |
void CvSize int int hint CvPyramid CvPyramid const float float char * | pStatus |
void CvSize int int hint CvPyramid CvPyramid const float float char float * | pError |
void CvSize int int hint CvPyramid CvPyramid const float float char float int | numFeat |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int | winSize |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int | maxLev |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int | maxIter |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float | threshold |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state | icvSqrIntegral_8u32s64f_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state | ippiSqrIntegral_8u32s64f_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar * | pSrc |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int | srcStep |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int * | pDst |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int | dstStep |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double * | pSqr |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int | sqrStep |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize | roiSize |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int | val |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr | icvHaarClassifierInitAlloc_32f |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr | ippiHaarClassifierInitAlloc_32f |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void ** | pState |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect * | pFeature |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float * | pWeight |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float * | pThreshold |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float * | pVal1 |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float * | pVal2 |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int * | pNum |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length | icvApplyHaarClassifier_32s32f_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length | ippiApplyHaarClassifier_32s32f_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int * | pSrc |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int | srcStep |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float * | pNorm |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int | normStep |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar * | pMask |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int | maskStep |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int CvSize | roi |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int CvSize int * | pPositive |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int CvSize int float | threshold |
float | icvLinearCoeffs [(ICV_LINEAR_TAB_SIZE+1)*2] |
float | icvCubicCoeffs [(ICV_CUBIC_TAB_SIZE+1)*2] |
const int | icv_object_win_border = 1 |
#define _CV_BINTREE_LIST | ( | ) |
Value:
struct _CvTrianAttr* prev_v; /* pointer to the parent element on the previous level of the tree */ \ struct _CvTrianAttr* next_v1; /* pointer to the child element on the next level of the tree */ \ struct _CvTrianAttr* next_v2;
#define _CvConvState CvFilterState |
#define CV_8TO32F | ( | x | ) | icv8x32fTab_cv[(x)+128] |
#define CV_8TO32F_SQR | ( | x | ) | icv8x32fSqrTab[(x)+128] |
#define CV_ADJUST_FEATURES 1 |
#define CV_CALC_MAX_8U | ( | a, | |||
b | ) | (a) += CV_FAST_CAST_8U((b) - (a)) |
#define CV_CALC_MIN_8U | ( | a, | |||
b | ) | (a) -= CV_FAST_CAST_8U((a) - (b)) |
#define CV_FAST_CAST_8U | ( | t | ) | (assert(-256 <= (t) || (t) <= 512), icvSaturate8u[(t)+256]) |
#define ICV_COPY_SUBPIX | ( | flavor, | |||
cn, | |||||
srctype, | |||||
dsttype | ) |
Value:
IPCVAPI_EX( CvStatus, icvCopySubpix_##flavor##_C##cn##R, \ "ippiCopySubpix_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \ ( const srctype* pSrc, int srcStep, dsttype* pDst, int dstStep, \ CvSize size, float dx, float dy ))
#define ICV_CUSTOM_GAUSSIAN_KERNEL (4+ICV_SYMMETRIC_KERNEL) |
#define ICV_KERNEL_TYPE | ( | flags | ) | ((flags) & ICV_KERNEL_TYPE_MASK) |
#define ICV_MAKE_BINARY_KERNEL | ( | shape | ) | (ICV_BINARY_KERNEL | (int)(shape)) |
#define ICV_MAKE_SEPARABLE_KERNEL | ( | x_type, | |||
y_type | ) | (ICV_SEPARABLE_KERNEL | ((x_type)&255) | (((y_type)&255) << 8)) |
#define ICV_MATCHTEMPLATE | ( | flavor, | |||
arrtype | ) |
Value:
IPCVAPI_EX( CvStatus, icvCrossCorrValid_Norm_##flavor##_C1R, \ "ippiCrossCorrValid_Norm_" #flavor "_C1R", \ CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const arrtype* pSrc, int srcStep, CvSize srcRoiSize, \ const arrtype* pTpl, int tplStep, CvSize tplRoiSize, \ float* pDst, int dstStep )) \ IPCVAPI_EX( CvStatus, icvCrossCorrValid_NormLevel_##flavor##_C1R, \ "ippiCrossCorrValid_NormLevel_" #flavor "_C1R", \ CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const arrtype* pSrc, int srcStep, CvSize srcRoiSize, \ const arrtype* pTpl, int tplStep, CvSize tplRoiSize, \ float* pDst, int dstStep )) \ IPCVAPI_EX( CvStatus, icvSqrDistanceValid_Norm_##flavor##_C1R, \ "ippiSqrDistanceValid_Norm_" #flavor "_C1R", \ CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const arrtype* pSrc, int srcStep, CvSize srcRoiSize, \ const arrtype* pTpl, int tplStep, CvSize tplRoiSize, \ float* pDst, int dstStep ))
#define ICV_PYRDOWN | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvPyrDown_Gauss5x5_##flavor##_C##cn##R, \ "ippiPyrDown_Gauss5x5_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \ ( const void* pSrc, int srcStep, void* pDst, int dstStep, \ CvSize roiSize, void* pBuffer ))
#define ICV_PYRUP | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvPyrUp_Gauss5x5_##flavor##_C##cn##R, \ "ippiPyrUp_Gauss5x5_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV), \ ( const void* pSrc, int srcStep, void* pDst, int dstStep, \ CvSize roiSize, void* pBuffer ))
#define ICV_UNDISTORT_RADIAL | ( | flavor, | |||
cn, | |||||
arrtype | ) |
Value:
#define ICV_Y_KERNEL_TYPE | ( | flags | ) | (((flags) >> 8) & 255) |
#define icvCheckVector_32f | ( | ptr, | |||
len | ) |
Definition at line 763 of file MyHaar.H.
Referenced by icvAddVector_32f(), icvMulMatrix_32f(), icvMulVectors_32f(), icvScaleVector_32f(), icvSubVector_32f(), and icvTransposeMatrix_32f().
#define icvCheckVector_64f | ( | ptr, | |||
len | ) |
Definition at line 762 of file MyHaar.H.
Referenced by icvAddVector_64d(), icvDetMatrix3x3_64d(), icvDotProduct_32f(), icvDotProduct_64f(), icvMulMatrix_64d(), icvMulVectors_64d(), icvScaleVector_64d(), icvSubVector_64d(), icvSum_32f(), icvTrace_32f(), icvTrace_64d(), and icvTransposeMatrix_64d().
#define icvCreateMatrix_32f | ( | w, | |||
h | ) | (float*)cvAlloc( (w)*(h)*sizeof(float)) |
#define icvCreateMatrix_64d | ( | w, | |||
h | ) | (double*)cvAlloc( (w)*(h)*sizeof(double)) |
#define icvCreateVector_32f | ( | len | ) | (float*)cvAlloc( (len)*sizeof(float)) |
#define icvCreateVector_64d | ( | len | ) | (double*)cvAlloc( (len)*sizeof(double)) |
#define icvNormVector_32f | ( | src, | |||
len | ) | sqrt(icvDotProduct_32f( src, src, len )) |
#define icvNormVector_64d | ( | src, | |||
len | ) | sqrt(icvDotProduct_64d( src, src, len )) |
#define IPCV_ACCUM | ( | flavor, | |||
arrtype, | |||||
acctype | ) |
#define IPCV_COLOR | ( | funcname, | |||
ipp_funcname, | |||||
flavor | ) |
#define IPCV_COPY_BORDER | ( | bordertype, | |||
flavor, | |||||
arrtype | ) |
Value:
IPCVAPI_EX( CvStatus, icvCopy##bordertype##Border_##flavor, \ "ippiCopy" #bordertype "Border_" #flavor, CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const arrtype* pSrc, int srcStep, CvSize srcRoiSize, \ arrtype* pDst, int dstStep, CvSize dstRoiSize, \ int topBorderWidth, int leftBorderWidth ))
#define IPCV_COPY_CONST_BORDER_C1 | ( | flavor, | |||
arrtype | ) |
Value:
IPCVAPI_EX( CvStatus, icvCopyConstBorder_##flavor, \ "ippiCopyConstBorder_" #flavor, CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const arrtype* pSrc, int srcStep, CvSize srcRoiSize, \ arrtype* pDst, int dstStep, CvSize dstRoiSize, \ int topBorderWidth, int leftBorderWidth, arrtype value ))
#define IPCV_COPY_CONST_BORDER_CN | ( | flavor, | |||
arrtype | ) |
Value:
IPCVAPI_EX( CvStatus, icvCopyConstBorder_##flavor, \ "ippiCopyConstBorder_" #flavor, CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const arrtype* pSrc, int srcStep, CvSize srcRoiSize, \ arrtype* pDst, int dstStep, CvSize dstRoiSize, \ int topBorderWidth, int leftBorderWidth, const arrtype* value ))
#define IPCV_FILTER | ( | suffix, | |||
ipp_suffix, | |||||
cn, | |||||
ksizetype, | |||||
anchortype | ) |
Value:
IPCVAPI_EX( CvStatus, icvFilter##suffix##_C##cn##R, \ "ippiFilter" #ipp_suffix "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, int srcstep, void* dst, int dststep, CvSize size, \ const float* kernel, ksizetype ksize, anchortype anchor ))
#define IPCV_FILTER_BOX | ( | flavor, | |||
cn | ) |
#define IPCV_FILTER_MEDIAN | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvFilterMedian_##flavor##_C##cn##R, \ "ippiFilterMedian_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, int srcstep, void* dst, int dststep, \ CvSize roi, CvSize ksize, CvPoint anchor ))
#define IPCV_FILTER_SCHARR | ( | suffix, | |||
ipp_suffix, | |||||
flavor | ) |
Value:
IPCVAPI_EX( CvStatus, icvFilterScharr##suffix##_##flavor##_C1R, \ "ippiFilterScharr" #ipp_suffix "_" #flavor "_C1R", CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, int srcstep, void* dst, int dststep, CvSize roi ))
#define IPCV_FILTER_SOBEL | ( | suffix, | |||
ipp_suffix, | |||||
flavor | ) |
Value:
IPCVAPI_EX( CvStatus, icvFilterSobel##suffix##_##flavor##_C1R, \ "ippiFilterSobel" #ipp_suffix "_" #flavor "_C1R", CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, int srcstep, void* dst, int dststep, CvSize roi, int aperture ))
#define IPCV_MOMENTS | ( | suffix, | |||
ipp_suffix, | |||||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvMoments##suffix##_C##cn##R, \ "ippiMoments" #ipp_suffix "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\ ( const void* img, int step, CvSize size, void* momentstate ))
#define IPCV_MORPHOLOGY | ( | minmaxtype, | |||
morphtype, | |||||
flavor, | |||||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icv##morphtype##Rect_##flavor##_C##cn##R, \ "ippiFilter" #minmaxtype "_" #flavor "_C" #cn "R", \ CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, int srcstep, void* dst, int dststep, \ CvSize roi, CvSize esize, CvPoint anchor )) \ IPCVAPI_EX( CvStatus, icv##morphtype##Any_##flavor##_C##cn##R, \ "ippi" #morphtype "_" #flavor "_C" #cn "R", \ CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, int srcstep, void* dst, int dststep, \ CvSize roi, const uchar* element, \ CvSize esize, CvPoint anchor ))
#define IPCV_REMAP | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvRemap_##flavor##_C##cn##R, \ "ippiRemap_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI), \ ( const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ const float* xmap, int xmapstep, const float* ymap, int ymapstep, \ void* dst, int dststep, CvSize dstsize, int interpolation ))
#define IPCV_RESIZE | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvResize_##flavor##_C##cn##R, \ "ippiResize_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\ (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ void* dst, int dststep, CvSize dstroi, \ double xfactor, double yfactor, int interpolation ))
#define IPCV_WARPAFFINE_BACK | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvWarpAffineBack_##flavor##_C##cn##R, \ "ippiWarpAffineBack_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\ (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ void* dst, int dststep, CvRect dstroi, \ const double* coeffs, int interpolate ))
#define IPCV_WARPPERSPECTIVE | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvWarpPerspective_##flavor##_C##cn##R, \ "ippiWarpPerspective_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\ (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ void* dst, int dststep, CvRect dstroi, \ const double* coeffs, int interpolate ))
#define IPCV_WARPPERSPECTIVE_BACK | ( | flavor, | |||
cn | ) |
Value:
IPCVAPI_EX( CvStatus, icvWarpPerspectiveBack_##flavor##_C##cn##R, \ "ippiWarpPerspectiveBack_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPI),\ (const void* src, CvSize srcsize, int srcstep, CvRect srcroi, \ void* dst, int dststep, CvRect dstroi, \ const double* coeffs, int interpolate ))
#define m | ( | y, | |||
x | ) | mat[(y)*3 + (x)] |
Referenced by icvDetMatrix3x3_64d(), and MTRand::randInt().
typedef CvStatus(CV_STDCALL *) CvCopyConstBorderFunc_Cn(const void *src, int srcstep, CvSize srcsize, void *dst, int dststep, CvSize dstsize, int top, int left, const void *value) |
typedef CvStatus(CV_STDCALL *) CvCopyNonConstBorderFunc(const void *src, int srcstep, CvSize srcsize, void *dst, int dststep, CvSize dstsize, int top, int left) |
typedef int void int CvSize struct CvFilterState int stage |
typedef int void int CvSize struct CvFilterState* state |
CV_EXTERN_C_FUNCPTR | ( | void(CV_CDECL *CvWriteNodeFunction)(void *seq, void *node) | ) |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void *state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length CV_PLUGINS1 | ( | CV_PLUGIN_IPPCV | ) |
const uchar int float int CvSize const float *pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value CV_PLUGINS1 | ( | CV_PLUGIN_IPPI | ) |
typedef CvStatus | ( | CV_STDCALL * | CvSobelFixedIPPFunc | ) | const |
CV_INLINE void icvAddVector_32f | ( | const float * | src1, | |
const float * | src2, | |||
float * | dst, | |||
int | len | |||
) |
CV_INLINE void icvAddVector_64d | ( | const double * | src1, | |
const double * | src2, | |||
double * | dst, | |||
int | len | |||
) |
CvStatus icvApproximateChainTC89 | ( | CvChain * | chain, | |
int | header_size, | |||
CvMemStorage * | storage, | |||
CvSeq ** | contour, | |||
int | method | |||
) |
CvStatus CV_STDCALL icvBlur_32f_CnR | ( | const float * | pSrc, | |
int | srcStep, | |||
float * | pDst, | |||
int | dstStep, | |||
CvSize * | roiSize, | |||
struct CvFilterState * | state, | |||
int | stage | |||
) |
CvStatus CV_STDCALL icvBlur_8u16s_C1R | ( | const uchar * | pSrc, | |
int | srcStep, | |||
short * | pDst, | |||
int | dstStep, | |||
CvSize * | roiSize, | |||
struct CvFilterState * | state, | |||
int | stage | |||
) |
CvFilterState* icvBlurInitAlloc | ( | int | roiWidth, | |
int | depth, | |||
int | channels, | |||
int | kerSize | |||
) |
void icvCreateCenterNormalLine | ( | CvSubdiv2DEdge | edge, | |
double * | a, | |||
double * | b, | |||
double * | c | |||
) |
CvHidHaarClassifierCascade* icvCreateHidHaarClassifierCascade | ( | CvHaarClassifierCascade * | cascade | ) |
Definition at line 67 of file haar.cpp.
References icvApplyHaarClassifier_32s32f_C1R_p, icvHaarClassifierFree_32f_p, icvHaarClassifierInitAlloc_32f_p, and icvRectStdDev_32s32f_C1R_p.
Referenced by cvHaarDetectObjects(), cvSetImagesForHaarClassifierCascade(), and myHaarDetectObjects().
CV_INLINE void icvCvt_32f_64d | ( | const float * | src, | |
double * | dst, | |||
int | len | |||
) |
CV_INLINE void icvCvt_64d_32f | ( | const double * | src, | |
float * | dst, | |||
int | len | |||
) |
CV_INLINE void icvDetMatrix3x3_64d | ( | const double * | mat, | |
double * | det | |||
) |
CV_INLINE float icvDistanceL2_32f | ( | CvPoint2D32f | pt1, | |
CvPoint2D32f | pt2 | |||
) |
CV_INLINE double icvDotProduct_32f | ( | const float * | src1, | |
const float * | src2, | |||
int | len | |||
) |
CV_INLINE double icvDotProduct_64f | ( | const double * | src1, | |
const double * | src2, | |||
int | len | |||
) |
void icvFilterFree | ( | CvFilterState ** | morphState | ) |
CvFilterState* icvFilterInitAlloc | ( | int | roiWidth, | |
CvDataType | dataType, | |||
int | channels, | |||
CvSize | elSize, | |||
CvPoint | elAnchor, | |||
const void * | elData, | |||
int | elementFlags | |||
) |
CvCopyConstBorderFunc_Cn icvGetCopyConstBorderFunc_Cn | ( | int | pixsize | ) |
CvCopyNonConstBorderFunc icvGetCopyNonConstBorderFunc | ( | int | pixsize, | |
int | bordertype = IPL_BORDER_REPLICATE | |||
) |
CvStatus CV_STDCALL icvGetRectSubPix_32f_C1R | ( | const float * | src, | |
int | src_step, | |||
CvSize | src_size, | |||
float * | dst, | |||
int | dst_step, | |||
CvSize | win_size, | |||
CvPoint2D32f | center | |||
) |
CvStatus CV_STDCALL icvGetRectSubPix_8u32f_C1R | ( | const uchar * | src, | |
int | src_step, | |||
CvSize | src_size, | |||
float * | dst, | |||
int | dst_step, | |||
CvSize | win_size, | |||
CvPoint2D32f | center | |||
) |
CvStatus CV_STDCALL icvGetRectSubPix_8u_C1R | ( | const uchar * | src, | |
int | src_step, | |||
CvSize | src_size, | |||
uchar * | dst, | |||
int | dst_step, | |||
CvSize | win_size, | |||
CvPoint2D32f | center | |||
) |
void icvInitCubicCoeffTab | ( | ) |
void icvInitLinearCoeffTab | ( | ) |
int icvIntersectLines | ( | double | x1, | |
double | dx1, | |||
double | y1, | |||
double | dy1, | |||
double | x2, | |||
double | dx2, | |||
double | y2, | |||
double | dy2, | |||
double * | t2 | |||
) |
void icvIntersectLines3 | ( | double * | a0, | |
double * | b0, | |||
double * | c0, | |||
double * | a1, | |||
double * | b1, | |||
double * | c1, | |||
CvPoint2D32f * | point | |||
) |
CV_INLINE void icvInvertMatrix_64d | ( | double * | A, | |
int | n, | |||
double * | invA | |||
) |
CvMat* icvIPPFilterInit | ( | const CvMat * | src, | |
int | stripe_size, | |||
CvSize | ksize | |||
) |
int icvIPPFilterNextStripe | ( | const CvMat * | src, | |
CvMat * | temp, | |||
int | y, | |||
CvSize | ksize, | |||
CvPoint | anchor | |||
) |
int icvIPPSepFilter | ( | const CvMat * | src, | |
CvMat * | dst, | |||
const CvMat * | kernelX, | |||
const CvMat * | kernelY, | |||
CvPoint | anchor | |||
) |
CV_INLINE void icvMulMatrix_32f | ( | const float * | src1, | |
int | w1, | |||
int | h1, | |||
const float * | src2, | |||
int | w2, | |||
int | h2, | |||
float * | dst | |||
) |
CV_INLINE void icvMulMatrix_64d | ( | const double * | src1, | |
int | w1, | |||
int | h1, | |||
const double * | src2, | |||
int | w2, | |||
int | h2, | |||
double * | dst | |||
) |
CV_INLINE void icvMulTransMatrixL_32f | ( | float * | src, | |
int | width, | |||
int | height, | |||
float * | dst | |||
) |
CV_INLINE void icvMulTransMatrixL_64d | ( | double * | src, | |
int | width, | |||
int | height, | |||
double * | dst | |||
) |
CV_INLINE void icvMulTransMatrixR_32f | ( | float * | src, | |
int | width, | |||
int | height, | |||
float * | dst | |||
) |
CV_INLINE void icvMulTransMatrixR_64d | ( | double * | src, | |
int | width, | |||
int | height, | |||
double * | dst | |||
) |
CV_INLINE void icvMulVectors_32f | ( | const float * | src1, | |
const float * | src2, | |||
float * | dst, | |||
int | len | |||
) |
CV_INLINE void icvMulVectors_64d | ( | const double * | src1, | |
const double * | src2, | |||
double * | dst, | |||
int | len | |||
) |
CV_INLINE void icvScaleVector_32f | ( | const float * | src, | |
float * | dst, | |||
int | len, | |||
double | scale | |||
) |
CV_INLINE void icvScaleVector_64d | ( | const double * | src, | |
double * | dst, | |||
int | len, | |||
double | scale | |||
) |
void icvSepConvSmall3_32f | ( | float * | src, | |
int | src_step, | |||
float * | dst, | |||
int | dst_step, | |||
CvSize | src_size, | |||
const float * | kx, | |||
const float * | ky, | |||
float * | buffer | |||
) |
CV_INLINE void icvSetIdentity_32f | ( | float * | dst, | |
int | w, | |||
int | h | |||
) |
CV_INLINE void icvSetIdentity_64d | ( | double * | dst, | |
int | w, | |||
int | h | |||
) |
CvStatus CV_STDCALL icvSobel_32f_C1R | ( | const float * | pSrc, | |
int | srcStep, | |||
float * | pDst, | |||
int | dstStep, | |||
CvSize * | roiSize, | |||
struct CvFilterState * | state, | |||
int | stage | |||
) |
CvStatus CV_STDCALL icvSobel_8u16s_C1R | ( | const uchar * | pSrc, | |
int | srcStep, | |||
short * | pDst, | |||
int | dstStep, | |||
CvSize * | roiSize, | |||
struct CvFilterState * | state, | |||
int | stage | |||
) |
CvFilterState* icvSobelInitAlloc | ( | int | roiwidth, | |
int | depth, | |||
int | kerSize, | |||
int | origin, | |||
int | dx, | |||
int | dy | |||
) |
CV_INLINE void icvSubVector_32f | ( | const float * | src1, | |
const float * | src2, | |||
float * | dst, | |||
int | len | |||
) |
CV_INLINE void icvSubVector_64d | ( | const double * | src1, | |
const double * | src2, | |||
double * | dst, | |||
int | len | |||
) |
CV_INLINE double icvSum_32f | ( | const float * | src, | |
int | len | |||
) |
CV_INLINE void icvTrace_32f | ( | const float * | src, | |
int | w, | |||
int | h, | |||
float * | trace | |||
) |
CV_INLINE void icvTrace_64d | ( | const double * | src, | |
int | w, | |||
int | h, | |||
double * | trace | |||
) |
CV_INLINE void icvTransposeMatrix_32f | ( | const float * | src, | |
int | w, | |||
int | h, | |||
float * | dst | |||
) |
CV_INLINE void icvTransposeMatrix_64d | ( | const double * | src, | |
int | w, | |||
int | h, | |||
double * | dst | |||
) |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length IPCVAPI_EX | ( | CvStatus | , | |
icvHaarClassifierFree_32f | , | |||
"ippiHaarClassifierFree_32f" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(void *pState) | ||||
) |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr IPCVAPI_EX | ( | CvStatus | , | |
icvRectStdDev_32s32f_C1R | , | |||
"ippiRectStdDev_32s32f_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(const int *pSrc, int srcStep,const double *pSqr, int sqrStep, float *pDst, int dstStep,CvSize roiSize, CvRect rect) | ||||
) |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state IPCVAPI_EX | ( | CvStatus | , | |
icvIntegral_8u32s_C1R | , | |||
"ippiIntegral_8u32s_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(const uchar *pSrc, int srcStep, int *pDst, int dstStep,CvSize roiSize, int val) | ||||
) |
void CvSize int int hint IPCVAPI_EX | ( | CvStatus | , | |
icvOpticalFlowPyrLKFree_8u_C1R | , | |||
"ippiOpticalFlowPyrLKFree_8u_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(void *pState) | ||||
) |
IPCVAPI_EX | ( | CvStatus | , | |
icvCopySubpix_32f_C1R | , | |||
"ippiCopySubpix_32f_C1R" | , | |||
0 | , | |||
(const float *pSrc, int srcStep, float *pDst, int dstStep,CvSize size, float dx, float dy) | ||||
) |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer IPCVAPI_EX | ( | CvStatus | , | |
icvUndistortGetSize | , | |||
"ippiUndistortGetSize" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(CvSize roiSize, int *pBufsize) | ||||
) |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value IPCVAPI_EX | ( | CvStatus | , | |
icvCannyGetSize | , | |||
"ippiCannyGetSize" | , | |||
0 | , | |||
(CvSize roiSize, int *bufferSize) | ||||
) |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value IPCVAPI_EX | ( | CvStatus | , | |
icvThreshold_LTVal_8u_C1R | , | |||
"ippiThreshold_LTVal_8u_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPI) | , | |||
(const uchar *pSrc, int srcstep, uchar *pDst, int dststep,CvSize size, uchar threshold, uchar value) | ||||
) |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size IPCVAPI_EX | ( | CvStatus | , | |
icvThreshold_GTVal_8u_C1R | , | |||
"ippiThreshold_GTVal_8u_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPI) | , | |||
(const uchar *pSrc, int srcstep, uchar *pDst, int dststep,CvSize size, uchar threshold, uchar value) | ||||
) |
const uchar int float int CvSize const float* pMetrics IPCVAPI_EX | ( | CvStatus | , | |
icvCompareC_8u_C1R | , | |||
"ippiCompareC_8u_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPI) | , | |||
(const uchar *src1, int srcstep1, uchar scalar,uchar *dst, int dststep, CvSize size, int cmp_op) | ||||
) |
IPCVAPI_EX | ( | CvStatus | , | |
icvDistanceTransform_3x3_8u32f_C1R | , | |||
"ippiDistanceTransform_3x3_8u32f_C1R" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(const uchar *pSrc, int srcStep, float *pDst,int dstStep, CvSize roiSize, const float *pMetrics) | ||||
) |
void* momentstate int CvDataType int int* bufSize IPCVAPI_EX | ( | CvStatus | , | |
icvPyrUpGetBufSize_Gauss5x5 | , | |||
"ippiPyrUpGetBufSize_Gauss5x5" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPCV) | , | |||
(int roiWidth, CvDataType dataType, int channels, int *bufSize) | ||||
) |
void* momentstate IPCVAPI_EX | ( | CvStatus | , | |
icvGetSpatialMoment_64f | , | |||
"ippiGetSpatialMoment_64f" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPI) | , | |||
(const void *momentstate, int mOrd, int nOrd,int nChannel, CvPoint roiOffset, double *value) | ||||
) |
IPCVAPI_EX | ( | CvStatus | , | |
icvMomentInitAlloc_64f | , | |||
"ippiMomentInitAlloc_64f" | , | |||
CV_PLUGINS1(CV_PLUGIN_IPPI) | , | |||
(void **momentstate, CvHintAlgorithm hint) | ||||
) |
static int is_equal | ( | const void * | _r1, | |
const void * | _r2, | |||
void * | ||||
) | [static] |
CvSeq* myHaarDetectObjects | ( | const CvArr * | _img, | |
CvHaarClassifierCascade * | cascade, | |||
CvMemStorage * | storage, | |||
double | scale_factor, | |||
int | min_neighbors, | |||
int | flags, | |||
CvSize | min_size, | |||
double * | pRanges, | |||
double | pPan, | |||
double | pTilt, | |||
double | pMinHeight, | |||
double | pMaxHeight, | |||
IplImage * | pImg, | |||
double | pMinSize, | |||
double | pMaxSize | |||
) |
Definition at line 2120 of file haar.cpp.
References cvRunHaarClassifierCascade(), cvSetImagesForHaarClassifierCascade(), WURDE::g_logdebug, icv_object_win_border, icvApplyHaarClassifier_32s32f_C1R_p, icvCreateHidHaarClassifierCascade(), and icvRectStdDev_32s32f_C1R_p.
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float float cx |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float float float cy |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float fx |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float fy |
const float icv8x32fSqrTab[] |
const float icv8x32fTab_cv[] |
const int icv_object_win_border = 1 |
Definition at line 1381 of file MyHaar.H.
Referenced by cvHaarDetectObjects(), and myHaarDetectObjects().
const uchar int float int CvSize const float* pMetrics icvAndC_8u_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length icvApplyHaarClassifier_32s32f_C1R |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer icvCreateMapCameraUndistort_32f_C1R |
float icvCubicCoeffs[(ICV_CUBIC_TAB_SIZE+1)*2] |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr icvHaarClassifierInitAlloc_32f |
float icvLinearCoeffs[(ICV_LINEAR_TAB_SIZE+1)*2] |
void CvSize int int hint icvOpticalFlowPyrLK_8u_C1R |
void* momentstate icvPyrDownGetBufSize_Gauss5x5 |
const uchar icvSaturate8u[] |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state icvSqrIntegral_8u32s64f_C1R |
void* momentstate int CvDataType int int* bufSize icvUpdateMotionHistory_8u32f_C1IR |
const uchar int float int CvSize const float* pMetrics ippiAndC_8u_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length ippiApplyHaarClassifier_32s32f_C1R |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer ippiCreateMapCameraUndistort_32f_C1R |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr ippiHaarClassifierInitAlloc_32f |
void CvSize int int hint ippiOpticalFlowPyrLK_8u_C1R |
void* momentstate ippiPyrDownGetBufSize_Gauss5x5 |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state ippiSqrIntegral_8u32s64f_C1R |
void* momentstate int CvDataType int int* bufSize ippiUpdateMotionHistory_8u32f_C1IR |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float float float float k1 |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float float float float float k2 |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int maskStep |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float float float float float float p1 |
Definition at line 635 of file MyHaar.H.
Referenced by FixedNdVector< T, 4 >::FixedNdVector(), and NdVector::NdVector().
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize float float float float float float float float p2 |
Definition at line 635 of file MyHaar.H.
Referenced by FixedNdVector< T, 4 >::FixedNdVector(), and NdVector::NdVector().
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int CvSize int* pPositive |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float* pThreshold |
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int CvSize roi |
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int CvSize roiSize |
Definition at line 540 of file MyHaar.H.
Referenced by cvLoadHaarClassifierCascade(), NdVector::n(), and NdPoint::n().
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int double valSqr void const CvRect const float const float const float const float const int int length const int int const float int uchar int CvSize int float threshold |
Definition at line 540 of file MyHaar.H.
Referenced by RFlex::parseJoystickReport(), RFlex::parseMotorReport(), RFlex::parseSonarReport(), RFlex::parseSystemReport(), and WURDEPlaybackCamera::startCapture().
void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int int int double int CvSize int val |
Definition at line 702 of file MyHaar.H.
Referenced by carmen_serial_ClearInputBuffer(), main(), parseRflexConfig(), WURDECamera::setCalibration(), WURDE1394Camera::setCalibration(), sick_read_data(), and sick_write_command().
const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize float float value const float int float int CvSize float float value const short int const short int uchar int CvSize float float void* pBuffer float int float int yStep |