Home
last modified time | relevance | path

Searched refs:normType (Results 1 – 3 of 3) sorted by relevance

/external/opencv/cxcore/src/
Dcxnorm.cpp965 cvNorm( const void* imgA, const void* imgB, int normType, const void* mask ) in cvNorm() argument
991 is_relative = mat2 && (normType & CV_RELATIVE); in cvNorm()
992 normType &= ~CV_RELATIVE; in cvNorm()
994 switch( normType ) in cvNorm()
1002 normType = (normType & 7) >> 1; in cvNorm()
1031 if( size.width <= CV_MAX_INLINE_MAT_OP_SIZE && normType == 2 /* CV_L2 */ ) in cvNorm()
1171 pass_hint = normType != 0 && (depth == CV_32F); in cvNorm()
1179 CV_GET_FUNC_PTR( func, (CvFunc2D_1A1P)norm_tab[normType].fn_2d[depth]); in cvNorm()
1194 CV_GET_FUNC_PTR( func, (CvFunc2D_1A1P1I)norm_tab[normType].fn_2d[depth]); in cvNorm()
1212 CV_GET_FUNC_PTR( func, (CvFunc2D_2A1P)norm_tab[3 + normType].fn_2d[depth]); in cvNorm()
[all …]
/external/opencv/cvaux/include/
Dcvmat.hpp657 double norm( int normType = CV_L2 ) const;
1272 inline double CvMAT::norm( int normType ) const
1273 { return cvNorm( this, 0, normType ); }
1291 inline double CvMAT::norm( CvMat& mat, int normType ) const
1292 { return cvNorm( this, &mat, normType ); }
/external/opencv/cv/include/
Dcvcompat.h354 #define cvNormMask(imgA,imgB,mask,normType) cvNorm(imgA,imgB,normType,mask) argument