mirror of
https://github.com/opencv/opencv.git
synced 2025-01-13 00:01:27 +08:00
fixing bug #3345. use norm to make sure two matrices are the same.
(cherry picked from commit eb9d7c4dd5
)
This commit is contained in:
parent
b7c5083a87
commit
2c7cf52e3b
@ -1914,5 +1914,7 @@ TEST(Imgproc_Blur, borderTypes)
|
||||
blur(src_roi, dst, kernelSize, Point(-1, -1), BORDER_REPLICATE);
|
||||
Mat expected_dst =
|
||||
(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…
Reference in New Issue
Block a user