From b2379b51b5f7d29cc21d0ea99fa0f914364d4486 Mon Sep 17 00:00:00 2001 From: Ilya Lavrenov Date: Wed, 9 Apr 2014 15:21:35 +0400 Subject: [PATCH] cv::countNonZero --- modules/core/src/stat.cpp | 30 ++++++++++++++++++++++++++++-- 1 file changed, 28 insertions(+), 2 deletions(-) diff --git a/modules/core/src/stat.cpp b/modules/core/src/stat.cpp index ecc0f76cb8..6d590f9075 100644 --- a/modules/core/src/stat.cpp +++ b/modules/core/src/stat.cpp @@ -680,7 +680,8 @@ static bool ocl_countNonZero( InputArray _src, int & res ) int cv::countNonZero( InputArray _src ) { - CV_Assert( _src.channels() == 1 ); + int type = _src.type(), cn = CV_MAT_CN(type); + CV_Assert( cn == 1 ); #ifdef HAVE_OPENCL int res = -1; @@ -690,8 +691,33 @@ int cv::countNonZero( InputArray _src ) #endif Mat src = _src.getMat(); - CountNonZeroFunc func = getCountNonZeroTab(src.depth()); +#if defined HAVE_IPP && !defined HAVE_IPP_ICV_ONLY + if (src.dims <= 2 || src.isContinuous()) + { + IppiSize roiSize = { src.cols, src.rows }; + Ipp32s count, srcstep = (Ipp32s)src.step; + IppStatus status = (IppStatus)-1; + + if (src.isContinuous()) + { + roiSize.width = (Ipp32s)src.total(); + roiSize.height = 1; + srcstep = (Ipp32s)src.total() * CV_ELEM_SIZE(type); + } + + int depth = CV_MAT_DEPTH(type); + if (depth == CV_8U) + status = ippiCountInRange_8u_C1R((const Ipp8u *)src.data, srcstep, roiSize, &count, 0, 0); + else if (depth == CV_32F) + status = ippiCountInRange_32f_C1R((const Ipp32f *)src.data, srcstep, roiSize, &count, 0, 0); + + if (status >= 0) + return (Ipp32s)src.total() - count; + } +#endif + + CountNonZeroFunc func = getCountNonZeroTab(src.depth()); CV_Assert( func != 0 ); const Mat* arrays[] = {&src, 0}; -- GitLab