| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328 |
- // This file is part of OpenCV project.
- // It is subject to the license terms in the LICENSE file found in the top-level directory
- // of this distribution and at http://opencv.org/license.html.
- /*
- StackBlur - a fast almost Gaussian Blur
- Theory: http://underdestruction.com/2004/02/25/stackblur-2004
- The code has been borrowed from (https://github.com/flozz/StackBlur).
- Below is the original copyright
- */
- /*
- Copyright (c) 2010 Mario Klingemann
- Permission is hereby granted, free of charge, to any person
- obtaining a copy of this software and associated documentation
- files (the "Software"), to deal in the Software without
- restriction, including without limitation the rights to use,
- copy, modify, merge, publish, distribute, sublicense, and/or sell
- copies of the Software, and to permit persons to whom the
- Software is furnished to do so, subject to the following
- conditions:
- The above copyright notice and this permission notice shall be
- included in all copies or substantial portions of the Software.
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
- EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
- OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
- NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
- HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
- WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
- FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
- OTHER DEALINGS IN THE SOFTWARE.
- */
- #include "test_precomp.hpp"
- namespace opencv_test { namespace {
- template<typename T>
- void _stackblurRef(const Mat& src, Mat& dst, Size ksize)
- {
- CV_Assert(!src.empty());
- CV_Assert(ksize.width > 0 && ksize.height > 0 && ksize.height % 2 == 1 && ksize.width % 2 == 1);
- dst.create(src.size(), src.type());
- const int CN = src.channels();
- int rowsImg = src.rows;
- int colsImg = src.cols;
- int wm = colsImg - 1;
- int radiusW = ksize.width / 2;
- int stackLenW = ksize.width;
- const float mulW = 1.0f / (((float )radiusW + 1.0f) * ((float )radiusW + 1.0f));
- // Horizontal direction
- std::vector<T> stack(stackLenW * CN);
- for (int row = 0; row < rowsImg; row++)
- {
- std::vector<float> sum(CN, 0);
- std::vector<float> sumIn(CN, 0);
- std::vector<float> sumOut(CN, 0);
- const T* srcPtr = src.ptr<T>(row);
- for (int i = 0; i <= radiusW; i++)
- {
- for (int ci = 0; ci < CN; ci++)
- {
- T tmp = *(srcPtr + ci);
- stack[i * CN + ci] = tmp;
- sum[ci] += tmp * (i + 1);
- sumOut[ci] += tmp;
- }
- }
- for (int i = 1; i <= radiusW; i++)
- {
- if (i <= wm) srcPtr += CN;
- for(int ci = 0; ci < CN; ci++)
- {
- T tmp = *(srcPtr + ci);
- stack[(i + radiusW) * CN + ci] = tmp;
- sum[ci] += tmp * (radiusW + 1 - i);
- sumIn[ci] += tmp;
- }
- }
- int sp = radiusW;
- int xp = radiusW ;
- if (xp > wm) xp = wm;
- T* dstPtr = dst.ptr<T>(row);
- srcPtr = src.ptr<T>(row) + xp * CN;
- int stackStart= 0;
- for (int i = 0; i < colsImg; i++)
- {
- stackStart = sp + stackLenW - radiusW;
- if (stackStart >= stackLenW) stackStart -= stackLenW;
- for(int ci = 0; ci < CN; ci++)
- {
- *(dstPtr + ci) = cv::saturate_cast<T>(sum[ci] * mulW);
- sum[ci] -= sumOut[ci];
- sumOut[ci] -= stack[stackStart*CN + ci];
- }
- const T* srcNew = srcPtr;
- if(xp < wm)
- srcNew += CN;
- for (int ci = 0; ci < CN; ci++)
- {
- stack[stackStart * CN + ci] = *(srcNew + ci);
- sumIn[ci] += *(srcNew + ci);
- sum[ci] += sumIn[ci];
- }
- int sp1 = sp + 1;
- if (sp1 >= stackLenW)
- sp1 = 0;
- for(int ci = 0; ci < CN; ci++)
- {
- T tmp = stack[sp1*CN + ci];
- sumOut[ci] += tmp;
- sumIn[ci] -= tmp;
- }
- dstPtr += CN;
- if (xp < wm)
- {
- xp++;
- srcPtr += CN;
- }
- ++sp;
- if (sp >= stackLenW)
- sp = 0;
- }
- }
- // Vertical direction
- int hm = rowsImg - 1;
- int widthElem = colsImg * CN;
- int radiusH = ksize.height / 2;
- int stackLenH = ksize.height;
- const float mulH = 1.0f / (((float )radiusH + 1.0f) * ((float )radiusH + 1.0f));
- stack.resize(stackLenH, 0);
- for (int col = 0; col < widthElem; col++)
- {
- const T* srcPtr =dst.ptr<T>() + col;
- float sum0 = 0;
- float sumIn0 = 0;
- float sumOut0 = 0;
- for (int i = 0; i <= radiusH; i++)
- {
- T tmp = (T)(*srcPtr);
- stack[i] = tmp;
- sum0 += tmp * (i + 1);
- sumOut0 += tmp;
- }
- for (int i = 1; i <= radiusH; i++)
- {
- if (i <= hm) srcPtr += widthElem;
- T tmp = (T)(*srcPtr);
- stack[i + radiusH] = tmp;
- sum0 += tmp * (radiusH - i + 1);
- sumIn0 += tmp;
- }
- int sp = radiusH;
- int yp = radiusH;
- if (yp > hm) yp = hm;
- T* dstPtr = dst.ptr<T>() + col;
- srcPtr = dst.ptr<T>(yp) + col;
- const T* srcNew;
- int stackStart = 0;
- for (int i = 0; i < rowsImg; i++)
- {
- stackStart = sp + stackLenH - radiusH;
- if (stackStart >= stackLenH) stackStart -= stackLenH;
- *(dstPtr) = saturate_cast<T>(sum0 * mulH);
- sum0 -= sumOut0;
- sumOut0 -= stack[stackStart];
- srcNew = srcPtr;
- if (yp < hm)
- srcNew += widthElem;
- stack[stackStart] = *(srcNew);
- sumIn0 += *(srcNew);
- sum0 += sumIn0;
- int sp1 = sp + 1;
- sp1 &= -(sp1 < stackLenH);
- sumOut0 += stack[sp1];
- sumIn0 -= stack[sp1];
- dstPtr += widthElem;
- if (yp < hm)
- {
- yp++;
- srcPtr += widthElem;
- }
- ++sp;
- if (sp >= stackLenH) sp = 0;
- }
- }
- }
- void stackBlurRef(const Mat& img, Mat& dst, Size ksize)
- {
- if(img.depth() == CV_8U)
- _stackblurRef<uchar>(img, dst, ksize);
- else if (img.depth() == CV_16S)
- _stackblurRef<short>(img, dst, ksize);
- else if (img.depth() == CV_16U)
- _stackblurRef<ushort>(img, dst, ksize);
- else if (img.depth() == CV_32F)
- _stackblurRef<float>(img, dst, ksize);
- else
- CV_Error(Error::StsNotImplemented,
- ("Unsupported Mat type in stackBlurRef, "
- "the supported formats are: CV_8U, CV_16U, CV_16S and CV_32F."));
- }
- std::vector<Size> kernelSizeVec = {
- Size(3, 3),
- Size(5, 5),
- Size(101, 101),
- Size(3, 9)
- };
- typedef testing::TestWithParam<tuple<int, int, int> > StackBlur;
- TEST_P (StackBlur, regression)
- {
- Mat img_ = imread(findDataFile("shared/fruits.png"), 1);
- const int cn = get<0>(GetParam());
- const int kIndex = get<1>(GetParam());
- const int dtype = get<2>(GetParam());
- Size ksize = kernelSizeVec[kIndex];
- Mat img, dstRef, dst;
- convert(img_, img, dtype);
- vector<Mat> channels;
- split(img, channels);
- channels.push_back(channels[0]); // channels size is 4.
- Mat imgCn;
- if (cn == 1)
- imgCn = channels[0];
- else if (cn == 4)
- merge(channels, imgCn);
- else
- imgCn = img;
- stackBlurRef(imgCn, dstRef, ksize);
- stackBlur(imgCn, dst, ksize);
- EXPECT_LE(cvtest::norm(dstRef, dst, NORM_INF), 2.);
- }
- INSTANTIATE_TEST_CASE_P(Imgproc, StackBlur,
- testing::Combine(
- testing::Values(1, 3, 4),
- testing::Values(0, 1, 2, 3),
- testing::Values(CV_8U, CV_16S, CV_16U, CV_32F)
- )
- );
- typedef testing::TestWithParam<tuple<int> > StackBlur_GaussianBlur;
- // StackBlur should produce similar results as GaussianBlur output.
- TEST_P(StackBlur_GaussianBlur, compare)
- {
- Mat img_ = imread(findDataFile("shared/fruits.png"), 1);
- const int dtype = get<0>(GetParam());
- Size ksize(3, 3);
- Mat img, dstS, dstG;
- convert(img_, img, dtype);
- stackBlur(img, dstS, ksize);
- GaussianBlur(img, dstG, ksize, 0);
- EXPECT_LE(cvtest::norm(dstS, dstG, NORM_INF), 13.);
- }
- INSTANTIATE_TEST_CASE_P(Imgproc, StackBlur_GaussianBlur, testing::Values(CV_8U, CV_16S, CV_16U, CV_32F));
- TEST(Imgproc_StackBlur, regression_28233)
- {
- Mat src1(1, 1, CV_8UC1, Scalar(123));
- Mat dst1;
- EXPECT_NO_THROW(stackBlur(src1, dst1, Size(9, 1)));
- EXPECT_EQ(dst1.at<uchar>(0, 0), 123);
- Mat src2(3, 3, CV_8UC1, Scalar(50));
- Mat dst2;
- EXPECT_NO_THROW(stackBlur(src2, dst2, Size(11, 11)));
- EXPECT_EQ(dst2.at<uchar>(1, 1), 50);
- }
- }
- }
|