/home/fwph/code/wurde/modules/visionModule/Operators/face/MyHaar.H File Reference

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)
CvFilterStateicvFilterInitAlloc (int roiWidth, CvDataType dataType, int channels, CvSize elSize, CvPoint elAnchor, const void *elData, int elementFlags)
void icvFilterFree (CvFilterState **morphState)
CvFilterStateicvSobelInitAlloc (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)
CvFilterStateicvBlurInitAlloc (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 *)
CvHidHaarClassifierCascadeicvCreateHidHaarClassifierCascade (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 ucharpSrc
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 CvPyramidpPyr1
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 Documentation

 
#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;

Definition at line 1109 of file MyHaar.H.

#define _CvConvState   CvFilterState

#define CV_8TO32F (  )     icv8x32fTab_cv[(x)+128]

Definition at line 37 of file MyHaar.H.

#define CV_8TO32F_SQR (  )     icv8x32fSqrTab[(x)+128]

Definition at line 41 of file MyHaar.H.

#define CV_ADJUST_FEATURES   1

Definition at line 1298 of file MyHaar.H.

Referenced by cvSetImagesForHaarClassifierCascade().

#define CV_ADJUST_WEIGHTS   0

Definition at line 1299 of file MyHaar.H.

#define CV_CALC_MAX ( a,
 )     if((a) < (b)) (a) = (b)

Definition at line 1236 of file MyHaar.H.

#define CV_CALC_MAX_8U ( a,
 )     (a) += CV_FAST_CAST_8U((b) - (a))

Definition at line 33 of file MyHaar.H.

#define CV_CALC_MIN ( a,
 )     if((a) > (b)) (a) = (b)

Definition at line 1233 of file MyHaar.H.

#define CV_CALC_MIN_8U ( a,
 )     (a) -= CV_FAST_CAST_8U((a) - (b))

Definition at line 32 of file MyHaar.H.

#define CV_COPY ( dst,
src,
len,
idx   )     for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (src)[idx]

Definition at line 1187 of file MyHaar.H.

#define CV_END   2

Definition at line 1249 of file MyHaar.H.

#define CV_FAST_CAST_8U (  )     (assert(-256 <= (t) || (t) <= 512), icvSaturate8u[(t)+256])

Definition at line 31 of file MyHaar.H.

#define CV_HIST_DEFAULT_TYPE   CV_32F

Definition at line 52 of file MyHaar.H.

#define CV_MIDDLE   4

Definition at line 1250 of file MyHaar.H.

#define CV_MORPH_ALIGN   4

Definition at line 1238 of file MyHaar.H.

#define CV_SET ( dst,
val,
len,
idx   )     for( (idx) = 0; (idx) < (len); (idx)++) (dst)[idx] = (val)

Definition at line 1190 of file MyHaar.H.

#define CV_START   1

Definition at line 1248 of file MyHaar.H.

#define CV_WHOLE   0

Definition at line 1247 of file MyHaar.H.

#define CvMorphFunc   CvFilterFunc

Definition at line 1245 of file MyHaar.H.

#define ICV_1_2_1_KERNEL   (4*1+ICV_SYMMETRIC_KERNEL)

Definition at line 1148 of file MyHaar.H.

#define ICV_1_m2_1_KERNEL   (4*3+ICV_SYMMETRIC_KERNEL)

Definition at line 1150 of file MyHaar.H.

#define ICV_3_10_3_KERNEL   (4*4+ICV_SYMMETRIC_KERNEL)

Definition at line 1151 of file MyHaar.H.

#define ICV_ASYMMETRIC_KERNEL   2

Definition at line 1146 of file MyHaar.H.

#define ICV_BINARY_KERNEL   (2<<16)

Definition at line 1136 of file MyHaar.H.

#define ICV_BINARY_KERNEL_SHAPE ( flags   )     ((flags) & 255)

Definition at line 1158 of file MyHaar.H.

#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 ))

Definition at line 654 of file MyHaar.H.

#define ICV_CUBIC_TAB_SIZE   (ICV_WARP_MASK+1)

Definition at line 1282 of file MyHaar.H.

#define ICV_CUSTOM_GAUSSIAN_KERNEL   (4+ICV_SYMMETRIC_KERNEL)

Definition at line 1153 of file MyHaar.H.

#define ICV_DEFAULT_GAUSSIAN_KERNEL   ICV_SYMMETRIC_KERNEL

Definition at line 1152 of file MyHaar.H.

#define ICV_GENERIC_KERNEL   (0<<16)

Definition at line 1134 of file MyHaar.H.

#define ICV_KERNEL_TYPE ( flags   )     ((flags) & ICV_KERNEL_TYPE_MASK)

Definition at line 1138 of file MyHaar.H.

#define ICV_KERNEL_TYPE_MASK   (15<<16)

Definition at line 1133 of file MyHaar.H.

#define ICV_LINEAR_TAB_SIZE   (ICV_WARP_MASK+1)

Definition at line 1278 of file MyHaar.H.

#define ICV_m1_0_1_KERNEL   (4*2+ICV_ASYMMETRIC_KERNEL)

Definition at line 1149 of file MyHaar.H.

#define ICV_MAKE_BINARY_KERNEL ( shape   )     (ICV_BINARY_KERNEL | (int)(shape))

Definition at line 1155 of file MyHaar.H.

#define ICV_MAKE_SEPARABLE_KERNEL ( x_type,
y_type   )     (ICV_SEPARABLE_KERNEL | ((x_type)&255) | (((y_type)&255) << 8))

Definition at line 1140 of file MyHaar.H.

#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 ))

Definition at line 547 of file MyHaar.H.

#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_SEPARABLE_KERNEL   (1<<16)

Definition at line 1135 of file MyHaar.H.

#define ICV_SYMMETRIC_KERNEL   1

Definition at line 1145 of file MyHaar.H.

#define ICV_UNDISTORT_RADIAL ( flavor,
cn,
arrtype   ) 

Value:

IPCVAPI_EX( CvStatus, icvUndistortRadial_##flavor##_C##cn##R,                       \
    "ippiUndistortRadial_" #flavor "_C" #cn "R", CV_PLUGINS1(CV_PLUGIN_IPPCV),      \
    ( const arrtype* pSrc, int srcStep, uchar* pDst, int dstStep, CvSize roiSize,   \
      float fx, float fy, float cx, float cy, float k1, float k2, uchar *pBuffer ))

Definition at line 639 of file MyHaar.H.

#define ICV_WARP_MASK   ((1 << ICV_WARP_SHIFT) - 1)

Definition at line 1276 of file MyHaar.H.

#define ICV_WARP_SHIFT   10

Definition at line 1275 of file MyHaar.H.

#define ICV_X_KERNEL_TYPE ( flags   )     ((flags) & 255)

Definition at line 1143 of file MyHaar.H.

#define ICV_Y_KERNEL_TYPE ( flags   )     (((flags) >> 8) & 255)

Definition at line 1144 of file MyHaar.H.

#define icvAddMatrix_32f ( src1,
src2,
dst,
w,
 )     icvAddVector_32f( (src1), (src2), (dst), (w)*(h))

Definition at line 747 of file MyHaar.H.

#define icvAddMatrix_64d ( src1,
src2,
dst,
w,
 )     icvAddVector_64d( (src1), (src2), (dst), (w)*(h))

Definition at line 860 of file MyHaar.H.

#define icvBlur_32f_C1R   icvBlur_32f_CnR

Definition at line 1224 of file MyHaar.H.

#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 icvCopyMatrix_32f ( src,
w,
h,
dst   )     memcpy((dst),(src),(w)*(h)*sizeof(float))

Definition at line 736 of file MyHaar.H.

#define icvCopyMatrix_64d ( src,
w,
h,
dst   )     memcpy((dst),(src),(w)*(h)*sizeof(double))

Definition at line 737 of file MyHaar.H.

#define icvCopyVector ( src,
dst,
len   )     memcpy( (dst), (src), (len)*sizeof((dst)[0]))

Definition at line 729 of file MyHaar.H.

#define icvCopyVector_32f ( src,
len,
dst   )     memcpy((dst),(src),(len)*sizeof(float))

Definition at line 732 of file MyHaar.H.

#define icvCopyVector_64d ( src,
len,
dst   )     memcpy((dst),(src),(len)*sizeof(double))

Definition at line 734 of file MyHaar.H.

#define icvCreateMatrix_32f ( w,
 )     (float*)cvAlloc( (w)*(h)*sizeof(float))

Definition at line 741 of file MyHaar.H.

#define icvCreateMatrix_64d ( w,
 )     (double*)cvAlloc( (w)*(h)*sizeof(double))

Definition at line 742 of file MyHaar.H.

#define icvCreateVector_32f ( len   )     (float*)cvAlloc( (len)*sizeof(float))

Definition at line 739 of file MyHaar.H.

#define icvCreateVector_64d ( len   )     (double*)cvAlloc( (len)*sizeof(double))

Definition at line 740 of file MyHaar.H.

#define icvDeleteMatrix   icvDeleteVector

Definition at line 760 of file MyHaar.H.

#define icvDeleteMatrix   icvDeleteVector

Definition at line 760 of file MyHaar.H.

#define icvDeleteVector ( vec   )     cvFree( (void**)&(vec) )

Definition at line 744 of file MyHaar.H.

#define icvDotProduct_64d   icvDotProduct_64f

Definition at line 1030 of file MyHaar.H.

#define icvNormVector_32f ( src,
len   )     sqrt(icvDotProduct_32f( src, src, len ))

Definition at line 753 of file MyHaar.H.

#define icvNormVector_64d ( src,
len   )     sqrt(icvDotProduct_64d( src, src, len ))

Definition at line 756 of file MyHaar.H.

#define icvScaleMatrix_32f ( src,
dst,
w,
h,
scale   )     icvScaleVector_32f( (src), (dst), (w)*(h), (scale) )

Definition at line 1024 of file MyHaar.H.

#define icvScaleMatrix_64d ( src,
dst,
w,
h,
scale   )     icvScaleVector_64d( (src), (dst), (w)*(h), (scale) )

Definition at line 1027 of file MyHaar.H.

#define icvSetZero ( dst,
len   )     memset( (dst), 0, (len)*sizeof((dst)[0]))

Definition at line 730 of file MyHaar.H.

#define icvSetZero_32f ( dst,
cols,
rows   )     memset((dst),0,(rows)*(cols)*sizeof(float))

Definition at line 733 of file MyHaar.H.

Referenced by icvSetIdentity_32f().

#define icvSetZero_64d ( dst,
cols,
rows   )     memset((dst),0,(rows)*(cols)*sizeof(double))

Definition at line 735 of file MyHaar.H.

Referenced by icvSetIdentity_64d().

#define icvSubMatrix_32f ( src1,
src2,
dst,
w,
 )     icvSubVector_32f( (src1), (src2), (dst), (w)*(h))

Definition at line 750 of file MyHaar.H.

#define icvSubMatrix_64d ( src1,
src2,
dst,
w,
 )     icvSubVector_64d( (src1), (src2), (dst), (w)*(h))

Definition at line 863 of file MyHaar.H.

#define icvTransformVector_32f ( matr,
src,
dst,
w,
 )     icvMulMatrix_32f( matr, w, h, src, 1, w, dst )

Definition at line 1017 of file MyHaar.H.

#define icvTransformVector_64d ( matr,
src,
dst,
w,
 )     icvMulMatrix_64d( matr, w, h, src, 1, w, dst )

Definition at line 1020 of file MyHaar.H.

#define IPCV_ACCUM ( flavor,
arrtype,
acctype   ) 

#define IPCV_COLOR ( funcname,
ipp_funcname,
flavor   ) 

Value:

IPCVAPI_EX( CvStatus, icv##funcname##_##flavor##_C3R,                           \
        "ippi" #ipp_funcname "_" #flavor "_C3R,"                                \
        "ippi" #ipp_funcname "_" #flavor "_C3R",                                \
        CV_PLUGINS2(CV_PLUGIN_IPPI,CV_PLUGIN_IPPCC),                            \
        ( const void* src, int srcstep, void* dst, int dststep, CvSize size ))

#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 ))

Definition at line 69 of file MyHaar.H.

#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 ))

Definition at line 89 of file MyHaar.H.

#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 ))

Definition at line 102 of file MyHaar.H.

#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   ) 

Value:

IPCVAPI_EX( CvStatus, icvFilterBox_##flavor##_C##cn##R,                             \
            "ippiFilterBox_" #flavor "_C" #cn "R", 0/*CV_PLUGINS1(CV_PLUGIN_IPPI)*/,\
            ( const void* src, int srcstep, void* dst, int dststep,                 \
              CvSize roi, CvSize ksize, CvPoint anchor ))

#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 ))

Definition at line 123 of file MyHaar.H.

#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,
 )     mat[(y)*3 + (x)]

Referenced by icvDetMatrix3x3_64d(), and MTRand::randInt().


Typedef Documentation

typedef int void int CvSize int aperture

Definition at line 1227 of file MyHaar.H.

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)

Definition at line 1256 of file MyHaar.H.

typedef CvStatus(CV_STDCALL *) CvCopyNonConstBorderFunc(const void *src, int srcstep, CvSize srcsize, void *dst, int dststep, CvSize dstsize, int top, int left)

Definition at line 1252 of file MyHaar.H.

typedef int void* dst

Definition at line 1240 of file MyHaar.H.

typedef int void* dst

Definition at line 1230 of file MyHaar.H.

typedef int void* dst

Definition at line 1227 of file MyHaar.H.

typedef int void int dst_step

Definition at line 1240 of file MyHaar.H.

typedef int void int dststep

Definition at line 1230 of file MyHaar.H.

typedef int void int dststep

Definition at line 1227 of file MyHaar.H.

typedef int void int CvSize roi

Definition at line 1230 of file MyHaar.H.

typedef int void int CvSize roi

Definition at line 1227 of file MyHaar.H.

typedef int void int CvSize* size

Definition at line 1240 of file MyHaar.H.

typedef double sqsumtype

Definition at line 1302 of file MyHaar.H.

typedef int src_step

Definition at line 1240 of file MyHaar.H.

typedef int srcstep

Definition at line 1230 of file MyHaar.H.

typedef int srcstep

Definition at line 1227 of file MyHaar.H.

typedef int void int CvSize struct CvFilterState int stage

Definition at line 1242 of file MyHaar.H.

typedef int void int CvSize struct CvFilterState* state

Definition at line 1242 of file MyHaar.H.

typedef int sumtype

Definition at line 1301 of file MyHaar.H.

typedef unsigned char uchar

Definition at line 19 of file MyHaar.H.

typedef unsigned short ushort

Definition at line 20 of file MyHaar.H.


Function Documentation

CV_EXTERN_C_FUNCPTR ( void(CV_CDECL *CvWriteNodeFunction)(void *seq, void *node)   ) 

Definition at line 54 of file MyHaar.H.

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 
)

Definition at line 818 of file MyHaar.H.

References icvCheckVector_32f.

CV_INLINE void icvAddVector_64d ( const double *  src1,
const double *  src2,
double *  dst,
int  len 
)

Definition at line 828 of file MyHaar.H.

References icvCheckVector_64f.

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 
)

Definition at line 1073 of file MyHaar.H.

CV_INLINE void icvCvt_64d_32f ( const double *  src,
float *  dst,
int  len 
)

Definition at line 1080 of file MyHaar.H.

CV_INLINE CvDataType icvDepthToDataType ( int  type  ) 

Definition at line 44 of file MyHaar.H.

CV_INLINE void icvDetMatrix3x3_64d ( const double *  mat,
double *  det 
)

Definition at line 953 of file MyHaar.H.

References icvCheckVector_64f, and m.

CV_INLINE float icvDistanceL2_32f ( CvPoint2D32f  pt1,
CvPoint2D32f  pt2 
)

Definition at line 1088 of file MyHaar.H.

CV_INLINE double icvDotProduct_32f ( const float *  src1,
const float *  src2,
int  len 
)

Definition at line 775 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE double icvDotProduct_64f ( const double *  src1,
const double *  src2,
int  len 
)

Definition at line 786 of file MyHaar.H.

References icvCheckVector_64f.

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 
)

Definition at line 1033 of file MyHaar.H.

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 
)

Definition at line 967 of file MyHaar.H.

References icvCheckVector_32f.

CV_INLINE void icvMulMatrix_64d ( const double *  src1,
int  w1,
int  h1,
const double *  src2,
int  w2,
int  h2,
double *  dst 
)

Definition at line 992 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE void icvMulTransMatrixL_32f ( float *  src,
int  width,
int  height,
float *  dst 
)

Definition at line 1065 of file MyHaar.H.

CV_INLINE void icvMulTransMatrixL_64d ( double *  src,
int  width,
int  height,
double *  dst 
)

Definition at line 1049 of file MyHaar.H.

CV_INLINE void icvMulTransMatrixR_32f ( float *  src,
int  width,
int  height,
float *  dst 
)

Definition at line 1057 of file MyHaar.H.

CV_INLINE void icvMulTransMatrixR_64d ( double *  src,
int  width,
int  height,
double *  dst 
)

Definition at line 1041 of file MyHaar.H.

CV_INLINE void icvMulVectors_32f ( const float *  src1,
const float *  src2,
float *  dst,
int  len 
)

Definition at line 797 of file MyHaar.H.

References icvCheckVector_32f.

CV_INLINE void icvMulVectors_64d ( const double *  src1,
const double *  src2,
double *  dst,
int  len 
)

Definition at line 807 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE void icvScaleVector_32f ( const float *  src,
float *  dst,
int  len,
double  scale 
)

Definition at line 909 of file MyHaar.H.

References icvCheckVector_32f.

CV_INLINE void icvScaleVector_64d ( const double *  src,
double *  dst,
int  len,
double  scale 
)

Definition at line 920 of file MyHaar.H.

References icvCheckVector_64f.

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 
)

Definition at line 867 of file MyHaar.H.

References icvSetZero_32f.

CV_INLINE void icvSetIdentity_64d ( double *  dst,
int  w,
int  h 
)

Definition at line 876 of file MyHaar.H.

References icvSetZero_64d.

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 
)

Definition at line 839 of file MyHaar.H.

References icvCheckVector_32f.

CV_INLINE void icvSubVector_64d ( const double *  src1,
const double *  src2,
double *  dst,
int  len 
)

Definition at line 849 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE double icvSum_32f ( const float *  src,
int  len 
)

Definition at line 765 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE void icvTrace_32f ( const float *  src,
int  w,
int  h,
float *  trace 
)

Definition at line 885 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE void icvTrace_64d ( const double *  src,
int  w,
int  h,
double *  trace 
)

Definition at line 897 of file MyHaar.H.

References icvCheckVector_64f.

CV_INLINE void icvTransposeMatrix_32f ( const float *  src,
int  w,
int  h,
float *  dst 
)

Definition at line 931 of file MyHaar.H.

References icvCheckVector_32f.

CV_INLINE void icvTransposeMatrix_64d ( const double *  src,
int  w,
int  h,
double *  dst 
)

Definition at line 942 of file MyHaar.H.

References icvCheckVector_64f.

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"  ,
,
(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"  ,
,
(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]

Definition at line 1365 of file MyHaar.H.

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.


Variable Documentation

void* momentstate int CvDataType int channels

Definition at line 213 of file MyHaar.H.

CvPyramid

Definition at line 67 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

void* momentstate int CvDataType dataType

Definition at line 213 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar* dst

Definition at line 594 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 702 of file MyHaar.H.

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

Definition at line 610 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int dststep

Definition at line 602 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int dststep

Definition at line 594 of file MyHaar.H.

const uchar int float int dstStep

Definition at line 581 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 592 of file MyHaar.H.

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

Definition at line 722 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 633 of file MyHaar.H.

float icvCubicCoeffs[(ICV_CUBIC_TAB_SIZE+1)*2]

icvDistanceTransform_5x5_8u32f_C1R

Definition at line 579 of file MyHaar.H.

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

Definition at line 712 of file MyHaar.H.

float icvLinearCoeffs[(ICV_LINEAR_TAB_SIZE+1)*2]

icvMomentFree_64f

Definition at line 137 of file MyHaar.H.

void CvSize int int hint icvOpticalFlowPyrLK_8u_C1R

Definition at line 683 of file MyHaar.H.

icvOpticalFlowPyrLKInitAlloc_8u_C1R

Definition at line 675 of file MyHaar.H.

void* momentstate icvPyrDownGetBufSize_Gauss5x5

Definition at line 211 of file MyHaar.H.

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

Definition at line 700 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size icvThreshold_GTVal_32f_C1R

Definition at line 600 of file MyHaar.H.

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

Definition at line 608 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize icvUpdateMotionHistory_8u32f_C1IR

Definition at line 538 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics ippiAndC_8u_C1R

Definition at line 592 of file MyHaar.H.

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

Definition at line 722 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 633 of file MyHaar.H.

ippiDistanceTransform_5x5_8u32f_C1R

Definition at line 579 of file MyHaar.H.

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

Definition at line 712 of file MyHaar.H.

ippiMomentFree_64f

Definition at line 137 of file MyHaar.H.

void CvSize int int hint ippiOpticalFlowPyrLK_8u_C1R

Definition at line 683 of file MyHaar.H.

ippiOpticalFlowPyrLKInitAlloc_8u_C1R

Definition at line 675 of file MyHaar.H.

void* momentstate ippiPyrDownGetBufSize_Gauss5x5

Definition at line 211 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state ippiSqrIntegral_8u32s64f_C1R

Definition at line 700 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size ippiThreshold_GTVal_32f_C1R

Definition at line 600 of file MyHaar.H.

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

Definition at line 608 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize ippiUpdateMotionHistory_8u32f_C1IR

Definition at line 538 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int maxIter

Definition at line 685 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int int int maxLev

Definition at line 685 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize const uchar int float* mhiIm

Definition at line 540 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize const uchar int float int mhiStep

Definition at line 540 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int numFeat

Definition at line 685 of file MyHaar.H.

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* pDst

Definition at line 702 of file MyHaar.H.

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

Definition at line 610 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float* pDst

Definition at line 602 of file MyHaar.H.

const uchar int float* pDst

Definition at line 581 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float* pError

Definition at line 685 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float* pNext

Definition at line 685 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float* pPrev

Definition at line 685 of file MyHaar.H.

void** ppState

Definition at line 677 of file MyHaar.H.

void CvSize int int hint CvPyramid* pPyr1

Definition at line 685 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid* pPyr2

Definition at line 685 of file MyHaar.H.

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

Definition at line 702 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar* pSrc

Definition at line 702 of file MyHaar.H.

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

Definition at line 610 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float* pSrc

Definition at line 602 of file MyHaar.H.

const uchar* pSrc

Definition at line 581 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char* pStatus

Definition at line 685 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

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

Definition at line 714 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

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

Definition at line 702 of file MyHaar.H.

void CvSize roiSize

Definition at line 677 of file MyHaar.H.

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 635 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

const uchar int float int CvSize roiSize

Definition at line 581 of file MyHaar.H.

void* momentstate int roiWidth

Definition at line 213 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar scalar

Definition at line 594 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize const uchar* silIm

Definition at line 540 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize const uchar int silStep

Definition at line 540 of file MyHaar.H.

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

Definition at line 610 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int float int CvSize size

Definition at line 602 of file MyHaar.H.

void* momentstate int CvDataType int int* bufSize const uchar int float int CvSize size

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 sqrStep

Definition at line 702 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar* src1

Definition at line 594 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 620 of file MyHaar.H.

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

Definition at line 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float void* state const uchar int srcStep

Definition at line 702 of file MyHaar.H.

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

Definition at line 610 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int uchar uchar int CvSize size const float int srcstep

Definition at line 602 of file MyHaar.H.

const uchar int srcStep

Definition at line 581 of file MyHaar.H.

const uchar int float int CvSize const float* pMetrics const uchar int srcstep1

Definition at line 594 of file MyHaar.H.

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 724 of file MyHaar.H.

void CvSize int int hint CvPyramid CvPyramid const float float char float int int int int float threshold

Definition at line 685 of file MyHaar.H.

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

Definition at line 610 of file MyHaar.H.

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

Definition at line 602 of file MyHaar.H.

Referenced by icvLoadCascadeCART().

void* momentstate int CvDataType int int* bufSize const uchar int float int CvSize float timestamp

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().

void CvSize int int hint CvPyramid CvPyramid const float float char float int int winSize

Definition at line 685 of file MyHaar.H.

void CvSize int winSize

Definition at line 677 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.

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

Definition at line 635 of file MyHaar.H.


Generated on Thu Feb 1 15:31:54 2007 for WURDE by  doxygen 1.5.1