#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_CATCH2) && defined(VISP_HAVE_THREADS)
#include <catch_amalgamated.hpp>
#include "common.hpp"
#include <thread>
#include <visp3/core/vpImageTools.h>
#include <visp3/core/vpIoTools.h>
#include <visp3/io/vpImageIo.h>
#if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGCODECS) && defined(HAVE_OPENCV_IMGPROC)
#include <opencv2/imgcodecs.hpp>
#include <opencv2/imgproc/imgproc.hpp>
#endif
#ifdef ENABLE_VISP_NAMESPACE
#endif
static unsigned int g_resize_width = 293;
static unsigned int g_resize_height = 137;
TEST_CASE("Nearest Neighbor image resize (naive code)", "[benchmark]")
{
SECTION("unsigned char")
{
BENCHMARK("Benchmark Nearest Neighbor uchar image resize (naive code)")
{
common_tools::resizeRef(I, Iresize, common_tools::g_nearest_neighbor);
return Iresize;
};
}
SECTION("vpRGBa")
{
BENCHMARK("Benchmark Nearest Neighbor RGBa image resize (naive code)")
{
common_tools::resizeRef(I, Iresize, common_tools::g_nearest_neighbor);
return Iresize;
};
}
}
TEST_CASE("Nearest Neighbor image resize (ViSP)", "[benchmark]")
{
SECTION("unsigned char")
{
BENCHMARK("Benchmark Nearest Neighbor uchar image resize (ViSP) (1 thread)")
{
return Iresize;
};
const unsigned int nThreads = std::thread::hardware_concurrency();
std::stringstream buffer;
buffer << "Benchmark Nearest Neighbor uchar image resize (ViSP) (" << nThreads << "threads)";
BENCHMARK(buffer.str().c_str())
{
return Iresize;
};
}
SECTION("vpRGBa")
{
BENCHMARK("Benchmark Nearest Neighbor RGBa image resize (ViSP) (1 thread)")
{
return Iresize;
};
const unsigned int nThreads = std::thread::hardware_concurrency();
std::stringstream buffer;
buffer << "Benchmark Nearest Neighbor RGBa image resize (ViSP) (" << nThreads << " threads)";
BENCHMARK(buffer.str().c_str())
{
return Iresize;
};
}
}
TEST_CASE("Bilinear image resize (naive code)", "[benchmark]")
{
SECTION("unsigned char")
{
BENCHMARK("Benchmark Bilinear uchar image resize (naive code)")
{
common_tools::resizeRef(I, Iresize, common_tools::g_bilinear);
return Iresize;
};
}
SECTION("vpRGBa")
{
BENCHMARK("Benchmark Bilinear RGBa image resize (naive code)")
{
common_tools::resizeRef(I, Iresize, common_tools::g_bilinear);
return Iresize;
};
}
}
TEST_CASE("Bilinear image resize (ViSP)", "[benchmark]")
{
SECTION("unsigned char")
{
BENCHMARK("Benchmark Bilinear uchar image resize (ViSP)")
{
return Iresize;
};
}
SECTION("vpRGBa")
{
BENCHMARK("Benchmark Bilinear RGBa image resize (ViSP)")
{
return Iresize;
};
}
}
TEST_CASE("Area image resize (ViSP)", "[benchmark]")
{
SECTION("unsigned char")
{
BENCHMARK("Benchmark Area uchar image resize (ViSP)")
{
return Iresize;
};
}
SECTION("vpRGBa")
{
BENCHMARK("Benchmark Area RGBa image resize (ViSP)")
{
return Iresize;
};
}
}
TEST_CASE("Bicubic image resize (ViSP)", "[benchmark]")
{
SECTION("unsigned char")
{
BENCHMARK("Benchmark Bicubic uchar image resize (ViSP) (1 thread)")
{
return Iresize;
};
const unsigned int nThreads = std::thread::hardware_concurrency();
std::stringstream buffer;
buffer << "Benchmark Bicubic uchar image resize (ViSP) (" << nThreads << " threads)";
BENCHMARK(buffer.str().c_str())
{
return Iresize;
};
}
SECTION("vpRGBa")
{
BENCHMARK("Benchmark Bicubic RGBa image resize (ViSP) (1 thread)")
{
return Iresize;
};
const unsigned int nThreads = std::thread::hardware_concurrency();
std::stringstream buffer;
buffer << "Benchmark Bicubic RGBa image resize (ViSP) (" << nThreads << " threads)";
BENCHMARK(buffer.str().c_str())
{
return Iresize;
};
}
}
#if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGCODECS) && defined(HAVE_OPENCV_IMGPROC)
TEST_CASE("Nearest Neighbor image resize (OpenCV)", "[benchmark]")
{
SECTION("unsigned char")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathGray, cv::IMREAD_GRAYSCALE);
BENCHMARK("Benchmark Nearest Neighbor uchar image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_NEAREST);
return img_resize;
};
}
SECTION("BGR")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathColor, cv::IMREAD_COLOR);
BENCHMARK("Benchmark Nearest Neighbor BGR image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_NEAREST);
return img_resize;
};
}
}
TEST_CASE("Bilinear image resize (OpenCV)", "[benchmark]")
{
SECTION("unsigned char")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathGray, cv::IMREAD_GRAYSCALE);
BENCHMARK("Benchmark Bilinear uchar image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_LINEAR);
return img_resize;
};
}
SECTION("BGR")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathColor, cv::IMREAD_COLOR);
BENCHMARK("Benchmark Bilinear BGR image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_LINEAR);
return img_resize;
};
}
}
TEST_CASE("Area image resize (OpenCV)", "[benchmark]")
{
SECTION("unsigned char")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathGray, cv::IMREAD_GRAYSCALE);
BENCHMARK("Benchmark Area uchar image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_AREA);
return img_resize;
};
}
SECTION("BGR")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathColor, cv::IMREAD_COLOR);
BENCHMARK("Benchmark Area BGR image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_AREA);
return img_resize;
};
}
}
TEST_CASE("Bicubic image resize (OpenCV)", "[benchmark]")
{
SECTION("unsigned char")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathGray, cv::IMREAD_GRAYSCALE);
BENCHMARK("Benchmark Bicubic uchar image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_CUBIC);
return img_resize;
};
}
SECTION("BGR")
{
cv::Mat img, img_resize;
img = cv::imread(imagePathColor, cv::IMREAD_COLOR);
BENCHMARK("Benchmark Bicubic BGR image resize (OpenCV)")
{
cv::resize(img, img_resize, cv::Size(g_resize_width, g_resize_height), 0, 0, cv::INTER_CUBIC);
return img_resize;
};
}
}
#endif
int main(int argc, char *argv[])
{
Catch::Session session;
bool runBenchmark = false;
auto cli = session.cli()
| Catch::Clara::Opt(runBenchmark)["--benchmark"]("run benchmark?")
| Catch::Clara::Opt(imagePathColor, "imagePathColor")["--imagePathColor"]("Path to color image")
| Catch::Clara::Opt(imagePathGray, "imagePathColor")["--imagePathGray"]
| Catch::Clara::Opt(g_resize_width, "g_resize_width")["--width"]("Resize width")
| Catch::Clara::Opt(g_resize_height, "g_resize_height")["--height"]("Resize height");
session.cli(cli);
session.applyCommandLine(argc, argv);
if (runBenchmark) {
std::cout <<
"imagePathColor:\n\t" << imagePathColor <<
"\n\t" << I_color.
getWidth() <<
"x" << I_color.
getHeight()
<< std::endl;
std::cout <<
"imagePathGray:\n\t" << imagePathGray <<
"\n\t" << I_gray.
getWidth() <<
"x" << I_gray.
getHeight()
<< std::endl;
std::cout << "Resize to: " << g_resize_width << "x" << g_resize_height << std::endl;
int numFailed = session.run();
return numFailed;
}
return EXIT_SUCCESS;
}
#else
#include <iostream>
int main() { return EXIT_SUCCESS; }
#endif
static void read(vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
unsigned int getWidth() const
unsigned int getHeight() const