1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-31 00:03:03 +04:00

performance test for INTER_AREA resize has been added.

This commit is contained in:
Marina Kolpakova
2012-06-06 14:45:33 +00:00
parent aa8fbc26da
commit 83390ea4e1
7 changed files with 13 additions and 9 deletions
-2
View File
@@ -1495,8 +1495,6 @@ TEST(Imgproc_resize_area, regression)
cv::Mat expected(5,5,CV_16UC1, expected_data);
cv::resize(src, actual, cv::Size(), 0.3, 0.3, INTER_AREA);
std::cout << actual << std::endl;
std::cout << expected << std::endl;
ASSERT_EQ(actual.type(), expected.type());
ASSERT_EQ(actual.size(), expected.size());