fixing bug #3345. use norm to make sure two matrices are the same.

(cherry picked from commit eb9d7c4dd5)
pull/2570/head
Seunghoon Park 11 years ago committed by Alexander Smorkalov
parent b7c5083a87
commit 2c7cf52e3b
  1. 4
      modules/imgproc/test/test_filter.cpp

@ -1914,5 +1914,7 @@ TEST(Imgproc_Blur, borderTypes)
blur(src_roi, dst, kernelSize, Point(-1, -1), BORDER_REPLICATE); blur(src_roi, dst, kernelSize, Point(-1, -1), BORDER_REPLICATE);
Mat expected_dst = Mat expected_dst =
(Mat_<uchar>(3, 3) << 170, 113, 170, 113, 28, 113, 170, 113, 170); (Mat_<uchar>(3, 3) << 170, 113, 170, 113, 28, 113, 170, 113, 170);
EXPECT_EQ(9 * 255, cv::sum(expected_dst == dst).val[0]); EXPECT_EQ(expected_dst.type(), dst.type());
EXPECT_EQ(expected_dst.size(), dst.size());
EXPECT_DOUBLE_EQ(0.0, cvtest::norm(expected_dst, dst, NORM_INF));
} }

Loading…
Cancel
Save