| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375 |
- // 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
- //#define GENERATE_DATA
- namespace opencv_test { namespace {
- size_t getFileSize(const string& filename)
- {
- std::ifstream ifs(filename.c_str(), std::ios::in | std::ios::binary);
- if (ifs.is_open())
- {
- ifs.seekg(0, std::ios::end);
- return (size_t)ifs.tellg();
- }
- return 0;
- }
- TEST(Imgcodecs_EXR, readWrite_32FC1)
- { // Y channels
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test32FC1.exr";
- const string filenameOutput = cv::tempfile(".exr");
- #ifndef GENERATE_DATA
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- #else
- const Size sz(64, 32);
- Mat img(sz, CV_32FC1, Scalar(0.5, 0.1, 1));
- img(Rect(10, 5, sz.width - 30, sz.height - 20)).setTo(Scalar(1, 0, 0));
- ASSERT_TRUE(cv::imwrite(filenameInput, img));
- #endif
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC1,img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- // Check generated file size to ensure that it's compressed with proper options
- ASSERT_LE(396u, getFileSize(filenameOutput)); // OpenEXR 2
- ASSERT_LE( getFileSize(filenameOutput), 440u); // OpenEXR 3.2+
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, readWrite_32FC3)
- { // RGB channels
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test32FC3.exr";
- const string filenameOutput = cv::tempfile(".exr");
- #ifndef GENERATE_DATA
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- #else
- const Size sz(64, 32);
- Mat img(sz, CV_32FC3, Scalar(0.5, 0.1, 1));
- img(Rect(10, 5, sz.width - 30, sz.height - 20)).setTo(Scalar(1, 0, 0));
- ASSERT_TRUE(cv::imwrite(filenameInput, img));
- #endif
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC3, img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, readWrite_32FC7)
- { // 0-6 channels (multispectral)
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test32FC7.exr";
- const string filenameOutput = cv::tempfile(".exr");
- #ifndef GENERATE_DATA
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- #else
- const Size sz(3, 5);
- Mat img(sz, CV_32FC7);
- img.at<cv::Vec<float, 7>>(0, 0)[0] = 101.125;
- img.at<cv::Vec<float, 7>>(2, 1)[3] = 203.500;
- img.at<cv::Vec<float, 7>>(4, 2)[6] = 305.875;
- ASSERT_TRUE(cv::imwrite(filenameInput, img));
- #endif
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_MAKETYPE(CV_32F, 7), img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- EXPECT_EQ(img2.type(), img.type());
- EXPECT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- const Mat img3 = cv::imread(filenameInput, IMREAD_GRAYSCALE);
- ASSERT_TRUE(img3.empty());
- const Mat img4 = cv::imread(filenameInput, IMREAD_COLOR);
- ASSERT_TRUE(img4.empty());
- }
- TEST(Imgcodecs_EXR, readWrite_32FC1_half)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test32FC1_half.exr";
- const string filenameOutput = cv::tempfile(".exr");
- std::vector<int> params;
- params.push_back(IMWRITE_EXR_TYPE);
- params.push_back(IMWRITE_EXR_TYPE_HALF);
- #ifndef GENERATE_DATA
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- #else
- const Size sz(64, 32);
- Mat img(sz, CV_32FC1, Scalar(0.5, 0.1, 1));
- img(Rect(10, 5, sz.width - 30, sz.height - 20)).setTo(Scalar(1, 0, 0));
- ASSERT_TRUE(cv::imwrite(filenameInput, img, params));
- #endif
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC1,img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img, params));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, readWrite_32FC3_half)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test32FC3_half.exr";
- const string filenameOutput = cv::tempfile(".exr");
- std::vector<int> params;
- params.push_back(IMWRITE_EXR_TYPE);
- params.push_back(IMWRITE_EXR_TYPE_HALF);
- #ifndef GENERATE_DATA
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- #else
- const Size sz(64, 32);
- Mat img(sz, CV_32FC3, Scalar(0.5, 0.1, 1));
- img(Rect(10, 5, sz.width - 30, sz.height - 20)).setTo(Scalar(1, 0, 0));
- ASSERT_TRUE(cv::imwrite(filenameInput, img, params));
- #endif
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC3, img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img, params));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, readWrite_32FC1_PIZ)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test32FC1.exr";
- const string filenameOutput = cv::tempfile(".exr");
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC1, img.type());
- std::vector<int> params;
- params.push_back(IMWRITE_EXR_COMPRESSION);
- params.push_back(IMWRITE_EXR_COMPRESSION_PIZ);
- ASSERT_TRUE(cv::imwrite(filenameOutput, img, params));
- // Check generated file size to ensure that it's compressed with proper options
- ASSERT_EQ(849u, getFileSize(filenameOutput));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- // Note: YC to GRAYSCALE (IMREAD_GRAYSCALE | IMREAD_ANYDEPTH)
- // outputs a black image,
- // as does Y to RGB (IMREAD_COLOR | IMREAD_ANYDEPTH).
- // This behavoir predates adding EXR alpha support issue
- // 16115.
- TEST(Imgcodecs_EXR, read_YA_ignore_alpha)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_YA.exr";
- const Mat img = cv::imread(filenameInput, IMREAD_GRAYSCALE | IMREAD_ANYDEPTH);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC1, img.type());
- // Writing Y covered by test 32FC1
- }
- TEST(Imgcodecs_EXR, read_YA_unchanged)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_YA.exr";
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC2, img.type());
- // Cannot test writing, 2 channel writing not supported by loadsave
- }
- TEST(Imgcodecs_EXR, read_YC_changeDepth)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_YRYBY.exr";
- const Mat img = cv::imread(filenameInput, IMREAD_COLOR);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_8UC3, img.type());
- const Mat img_rgb = cv::imread(filenameInput, IMREAD_COLOR_RGB);
- ASSERT_FALSE(img_rgb.empty());
- ASSERT_EQ(CV_8UC3, img_rgb.type());
- cvtColor(img_rgb, img_rgb, COLOR_RGB2BGR);
- // See https://github.com/opencv/opencv/issues/26705
- // If ALGO_HINT_ACCURATE is set, norm should be 0.
- // If ALGO_HINT_APPROX is set, norm should be 1(or 0).
- EXPECT_LE(cvtest::norm(img, img_rgb, NORM_INF),
- (cv::getDefaultAlgorithmHint() == ALGO_HINT_ACCURATE)?0:1);
- // Cannot test writing, EXR encoder doesn't support 8U depth
- }
- TEST(Imgcodecs_EXR, readwrite_YCA_ignore_alpha)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_YRYBYA.exr";
- const string filenameOutput = cv::tempfile(".exr");
- const Mat img = cv::imread(filenameInput, IMREAD_COLOR | IMREAD_ANYDEPTH);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC3, img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, read_YC_unchanged)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_YRYBY.exr";
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC3, img.type());
- // Writing YC covered by test readwrite_YCA_ignore_alpha
- }
- TEST(Imgcodecs_EXR, readwrite_YCA_unchanged)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_YRYBYA.exr";
- const string filenameOutput = cv::tempfile(".exr");
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC4, img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, readwrite_RGBA_togreyscale)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_GeneratedRGBA.exr";
- const string filenameOutput = cv::tempfile(".exr");
- const Mat img = cv::imread(filenameInput, IMREAD_GRAYSCALE | IMREAD_ANYDEPTH);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC1, img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- TEST(Imgcodecs_EXR, read_RGBA_ignore_alpha)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_GeneratedRGBA.exr";
- const Mat img = cv::imread(filenameInput, IMREAD_COLOR | IMREAD_ANYDEPTH);
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC3, img.type());
- // Writing RGB covered by test 32FC3
- }
- TEST(Imgcodecs_EXR, read_RGBA_unchanged)
- {
- const string root = cvtest::TS::ptr()->get_data_path();
- const string filenameInput = root + "readwrite/test_GeneratedRGBA.exr";
- const string filenameOutput = cv::tempfile(".exr");
- #ifndef GENERATE_DATA
- const Mat img = cv::imread(filenameInput, IMREAD_UNCHANGED);
- #else
- const Size sz(64, 32);
- Mat img(sz, CV_32FC4, Scalar(0.5, 0.1, 1, 1));
- img(Rect(10, 5, sz.width - 30, sz.height - 20)).setTo(Scalar(1, 0, 0, 1));
- img(Rect(10, 20, sz.width - 30, sz.height - 20)).setTo(Scalar(1, 1, 0, 0));
- ASSERT_TRUE(cv::imwrite(filenameInput, img));
- #endif
- ASSERT_FALSE(img.empty());
- ASSERT_EQ(CV_32FC4, img.type());
- ASSERT_TRUE(cv::imwrite(filenameOutput, img));
- const Mat img2 = cv::imread(filenameOutput, IMREAD_UNCHANGED);
- ASSERT_EQ(img2.type(), img.type());
- ASSERT_EQ(img2.size(), img.size());
- EXPECT_LE(cvtest::norm(img, img2, NORM_INF | NORM_RELATIVE), 1e-3);
- EXPECT_EQ(0, remove(filenameOutput.c_str()));
- }
- // See https://github.com/opencv/opencv/pull/26211
- // ( related with https://github.com/opencv/opencv/issues/26207 )
- TEST(Imgcodecs_EXR, imencode_regression_26207_extra)
- {
- // CV_8U is not supported depth for EXR Encoder.
- const cv::Mat src(100, 100, CV_8UC1, cv::Scalar::all(0));
- std::vector<uchar> buf;
- bool ret = false;
- EXPECT_ANY_THROW(ret = imencode(".exr", src, buf));
- EXPECT_FALSE(ret);
- }
- TEST(Imgcodecs_EXR, imwrite_regression_26207_extra)
- {
- // CV_8U is not supported depth for EXR Encoder.
- const cv::Mat src(100, 100, CV_8UC1, cv::Scalar::all(0));
- const string filename = cv::tempfile(".exr");
- bool ret = false;
- EXPECT_ANY_THROW(ret = imwrite(filename, src));
- EXPECT_FALSE(ret);
- remove(filename.c_str());
- }
- }} // namespace
|