mirror of
https://github.com/opencv/opencv.git
synced 2024-12-03 00:10:21 +08:00
934e6899f8
imgcodecs: Add rgb flag for imread and imdecode #25809 Try to `imread` images by RGB to save R-B swapping costs. ## How to use it? ``` img_rgb = cv2.imread("PATH", IMREAD_COLOR_RGB) # OpenCV decode the image by RGB format. ``` ## TODO - [x] Fix the broken code - [x] Add imread rgb test - [x] Speed test of rgb mode. ## Performance test | file name | IMREAD_COLOR | IMREAD_COLOR_RGB | | --------- | ------ | --------- | | jpg01 | 284 ms | 277 ms | | jpg02 | 376 ms | 366 ms | | png01 | 62 ms | 60 ms | | Png02 | 97 ms | 94 ms | Test with [image_test.zip](https://github.com/user-attachments/files/15982949/image_test.zip) ```.cpp string img_path = "/Users/mzh/work/data/image_test/png02.png"; int loop = 20; TickMeter t; double t0 = 10000; for (int i = 0; i < loop; i++) { t.reset(); t.start(); img_bgr = imread(img_path, IMREAD_COLOR); t.stop(); if (t.getTimeMilli() < t0) t0 = t.getTimeMilli(); } std::cout<<"bgr time = "<<t0<<std::endl; t0 = 10000; for (int i = 0; i < loop; i++) { t.reset(); t.start(); img_rgb = imread(img_path, IMREAD_COLOR_RGB); t.stop(); if (t.getTimeMilli() < t0) t0 = t.getTimeMilli(); } std::cout<<"rgb time = "<<t0<<std::endl; ``` ### Pull Request Readiness Checklist See details at https://github.com/opencv/opencv/wiki/How_to_contribute#making-a-good-pull-request - [x] I agree to contribute to the project under Apache 2 License. - [x] To the best of my knowledge, the proposed patch is not based on a code under GPL or another license that is incompatible with OpenCV - [x] The PR is proposed to the proper branch - [ ] There is a reference to the original bug report and related work - [ ] There is accuracy test, performance test and test data in opencv_extra repository, if applicable Patch to opencv_extra has the same branch name. - [ ] The feature is well documented and sample code can be built with the project CMake
318 lines
11 KiB
C++
318 lines
11 KiB
C++
// 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_EQ(396u, 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()));
|
|
}
|
|
|
|
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_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 suppported 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);
|
|
|
|
EXPECT_TRUE(cvtest::norm(img, img_rgb, NORM_INF) == 0);
|
|
|
|
// 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()));
|
|
}
|
|
|
|
}} // namespace
|