/external/opencv/cxcore/src/ |
D | cxutils.cpp | 689 double a, double b, int norm_type, const CvArr* mask ) in cvNormalize() argument 699 if( norm_type == CV_MINMAX ) in cvNormalize() 707 else if( norm_type == CV_L2 || norm_type == CV_L1 || norm_type == CV_C ) in cvNormalize() 723 if( norm_type == CV_L2 ) in cvNormalize() 732 else if( norm_type == CV_L1 ) in cvNormalize() 756 if( norm_type == CV_L2 ) in cvNormalize() 765 else if( norm_type == CV_L1 ) in cvNormalize() 785 scale = cvNorm( src, 0, norm_type, mask ); in cvNormalize()
|
/external/opencv3/modules/cudaarithm/perf/ |
D | perf_reductions.cpp | 398 const int norm_type = GET_PARAM(2); in PERF_TEST_P() local 411 … TEST_CYCLE() cv::cuda::normalize(d_src, dst, alpha, beta, norm_type, type, cv::cuda::GpuMat()); in PERF_TEST_P() 419 TEST_CYCLE() cv::normalize(src, dst, alpha, beta, norm_type, type); in PERF_TEST_P()
|
/external/opencv3/modules/java/src/ |
D | core+Core.java | 918 …public static void normalize(Mat src, Mat dst, double alpha, double beta, int norm_type, int dtype… in normalize() argument 921 normalize_0(src.nativeObj, dst.nativeObj, alpha, beta, norm_type, dtype, mask.nativeObj); in normalize() 927 …public static void normalize(Mat src, Mat dst, double alpha, double beta, int norm_type, int dtype) in normalize() argument 930 normalize_1(src.nativeObj, dst.nativeObj, alpha, beta, norm_type, dtype); in normalize() 936 public static void normalize(Mat src, Mat dst, double alpha, double beta, int norm_type) in normalize() argument 939 normalize_2(src.nativeObj, dst.nativeObj, alpha, beta, norm_type); in normalize() 2315 …(long src_nativeObj, long dst_nativeObj, double alpha, double beta, int norm_type, int dtype, long… in normalize_0() argument 2316 …ize_1(long src_nativeObj, long dst_nativeObj, double alpha, double beta, int norm_type, int dtype); in normalize_1() argument 2317 …void normalize_2(long src_nativeObj, long dst_nativeObj, double alpha, double beta, int norm_type); in normalize_2() argument
|
D | core.cpp | 1541 …g src_nativeObj, jlong dst_nativeObj, jdouble alpha, jdouble beta, jint norm_type, jint dtype, jlo… in Java_org_opencv_core_Core_normalize_10() argument 1549 cv::normalize( src, dst, (double)alpha, (double)beta, (int)norm_type, (int)dtype, mask ); in Java_org_opencv_core_Core_normalize_10() 1564 … jlong src_nativeObj, jlong dst_nativeObj, jdouble alpha, jdouble beta, jint norm_type, jint dtype) in Java_org_opencv_core_Core_normalize_11() argument 1571 cv::normalize( src, dst, (double)alpha, (double)beta, (int)norm_type, (int)dtype ); in Java_org_opencv_core_Core_normalize_11() 1586 …nv, jclass , jlong src_nativeObj, jlong dst_nativeObj, jdouble alpha, jdouble beta, jint norm_type) in Java_org_opencv_core_Core_normalize_12() argument 1593 cv::normalize( src, dst, (double)alpha, (double)beta, (int)norm_type ); in Java_org_opencv_core_Core_normalize_12()
|
/external/opencv3/modules/cudaarithm/test/ |
D | test_reductions.cpp | 912 int norm_type; in PARAM_TEST_CASE() local 923 norm_type = GET_PARAM(3); in PARAM_TEST_CASE() 939 cv::cuda::normalize(loadMat(src, useRoi), dst, alpha, beta, norm_type, type); in CUDA_TEST_P() 942 cv::normalize(src, dst_gold, alpha, beta, norm_type, type); in CUDA_TEST_P() 954 …cv::cuda::normalize(loadMat(src, useRoi), dst, alpha, beta, norm_type, type, loadMat(mask, useRoi)… in CUDA_TEST_P() 958 cv::normalize(src, dst_gold, alpha, beta, norm_type, type, mask); in CUDA_TEST_P()
|
/external/opencv/cvaux/include/ |
D | cvmat.hpp | 476 double norm( int norm_type = CV_L2 ) const; 477 double norm( CvMat& mat, int norm_type = CV_L2 ) const; 643 double norm( int norm_type = CV_L2 ) const; 714 double norm( int norm_type = CV_L2 ) const; 2108 inline double _CvMAT_BASE_OP_::norm( int norm_type ) const 2109 { return ((CvMAT)*this).norm( norm_type ); } 2296 inline double _CvMAT_T_::norm( int norm_type ) const 2297 { return a.norm( norm_type ); } 2299 inline double _CvMAT_ADD_::norm( int norm_type ) const 2302 return cvNorm( a, b, norm_type ); [all …]
|
/external/opencv3/samples/python2/ |
D | hist.py | 108 norm = cv2.normalize(gray,alpha = 0,beta = 255,norm_type = cv2.NORM_MINMAX)
|
/external/opencv3/modules/calib3d/test/ |
D | test_homography.cpp | 91 …bool check_matrix_diff(const cv::Mat& original, const cv::Mat& found, const int norm_type, double … 120 …check_matrix_diff(const cv::Mat& original, const cv::Mat& found, const int norm_type, double &diff) in check_matrix_diff() argument 122 diff = cvtest::norm(original, found, norm_type); in check_matrix_diff()
|
/external/opencv3/modules/cudaarithm/include/opencv2/ |
D | cudaarithm.hpp | 688 int norm_type, int dtype, InputArray mask = noArray(),
|
/external/opencv/cxcore/include/ |
D | cxcore.h | 872 int norm_type CV_DEFAULT(CV_L2), 877 int norm_type CV_DEFAULT(CV_L2),
|
/external/opencv3/modules/core/include/opencv2/ |
D | core.hpp | 710 int norm_type = NORM_L2, int dtype = -1, InputArray mask = noArray());
|
/external/opencv3/modules/core/src/ |
D | convert.cpp | 6073 int norm_type, int rtype, InputArray _mask ) in normalize() argument 6076 if( norm_type == CV_MINMAX ) in normalize() 6084 else if( norm_type == CV_L2 || norm_type == CV_L1 || norm_type == CV_C ) in normalize() 6086 scale = norm( _src, norm_type, _mask ); in normalize() 6226 double a, double b, int norm_type, const CvArr* maskarr ) in cvNormalize() argument 6232 cv::normalize( src, dst, a, b, norm_type, dst.type(), mask ); in cvNormalize()
|
D | matrix.cpp | 5327 void normalize( const SparseMat& src, SparseMat& dst, double a, int norm_type ) in normalize() argument 5330 if( norm_type == CV_L2 || norm_type == CV_L1 || norm_type == CV_C ) in normalize() 5332 scale = norm( src, norm_type ); in normalize()
|
/external/opencv3/modules/core/include/opencv2/core/ |
D | core_c.h | 1476 int norm_type CV_DEFAULT(CV_L2), 1482 int norm_type CV_DEFAULT(CV_L2),
|