Home
last modified time | relevance | path

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

/external/opencv/cv/src/
Dcvsmooth.cpp1312 cvSmooth( const void* srcarr, void* dstarr, int smooth_type, in cvSmooth() argument
1347 if( smooth_type != CV_BLUR_NO_SCALE && !CV_ARE_TYPES_EQ( src, dst )) in cvSmooth()
1351 if( smooth_type == CV_BLUR || smooth_type == CV_BLUR_NO_SCALE || in cvSmooth()
1352 smooth_type == CV_GAUSSIAN || smooth_type == CV_MEDIAN ) in cvSmooth()
1355 if( smooth_type == CV_GAUSSIAN ) in cvSmooth()
1379 if( have_ipp && (smooth_type == CV_BLUR || (smooth_type == CV_MEDIAN && param1 <= 15)) && in cvSmooth()
1384 if( smooth_type == CV_BLUR ) in cvSmooth()
1394 else if( smooth_type == CV_MEDIAN ) in cvSmooth()
1429 if( smooth_type == CV_BLUR || smooth_type == CV_BLUR_NO_SCALE ) in cvSmooth()
1432 smooth_type == CV_BLUR, cvSize(param1, param2) )); in cvSmooth()
[all …]
/external/opencv3/modules/imgproc/test/
Dtest_filter.cpp626 const char* smooth_type; member in CV_SmoothBaseTest
632 smooth_type = ""; in CV_SmoothBaseTest()
743 smooth_type = "Gaussian"; in CV_GaussianBlurTest()
859 smooth_type = "Median"; in CV_MedianBlurTest()
/external/opencv3/modules/imgproc/src/
Dsmooth.cpp3432 cvSmooth( const void* srcarr, void* dstarr, int smooth_type, in cvSmooth() argument
3438 (smooth_type == CV_BLUR_NO_SCALE || dst.type() == src.type()) ); in cvSmooth()
3443 if( smooth_type == CV_BLUR || smooth_type == CV_BLUR_NO_SCALE ) in cvSmooth()
3445 smooth_type == CV_BLUR, cv::BORDER_REPLICATE ); in cvSmooth()
3446 else if( smooth_type == CV_GAUSSIAN ) in cvSmooth()
3448 else if( smooth_type == CV_MEDIAN ) in cvSmooth()