Visual Servoing Platform  version 3.6.1 under development (2024-04-19)
testGaussianFilter.cpp

Test Gaussian filter.

/****************************************************************************
*
* ViSP, open source Visual Servoing Platform software.
* Copyright (C) 2005 - 2023 by Inria. All rights reserved.
*
* This software is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact Inria about acquiring a ViSP Professional
* Edition License.
*
* See https://visp.inria.fr for more information.
*
* This software was developed at:
* Inria Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
*
* If you have questions regarding the use of this file, please contact
* Inria at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Description:
* Test Gaussian filter.
*
*****************************************************************************/
#include <visp3/core/vpConfig.h>
#if defined(VISP_HAVE_SIMDLIB) && defined(VISP_HAVE_CATCH2) && (VISP_HAVE_DATASET_VERSION >= 0x030400)
#define CATCH_CONFIG_RUNNER
#include <catch.hpp>
#include <visp3/core/vpGaussianFilter.h>
#include <visp3/core/vpImageTools.h>
#include <visp3/core/vpIoTools.h>
#include <visp3/io/vpImageIo.h>
TEST_CASE("Test vpGaussianFilter (unsigned char)")
{
const std::string filepath = vpIoTools::createFilePath(vpIoTools::getViSPImagesDataPath(), "Klimt/Klimt.pgm");
vpImageIo::read(I, filepath);
std::vector<float> sigmas = { 0.5f, 2.0f, 5.0f, 7.0f };
for (auto sigma : sigmas) {
vpGaussianFilter gaussianFilter(I.getWidth(), I.getHeight(), sigma);
gaussianFilter.apply(I, I_blurred);
vpImage<unsigned char> I_blurred_ref;
const std::string filepath_ref = vpIoTools::createFilePath(
vpIoTools::getViSPImagesDataPath(), "Gaussian-filter/Klimt_gray_Gaussian_blur_sigma=%.1f.png");
char buffer[FILENAME_MAX];
snprintf(buffer, FILENAME_MAX, filepath_ref.c_str(), sigma);
const std::string filename = buffer;
vpImageIo::read(I_blurred_ref, filename);
vpImageTools::imageDifferenceAbsolute(I_blurred, I_blurred_ref, I_diff);
vpImage<double> I_diff_dbl;
vpImageConvert::convert(I_diff, I_diff_dbl);
std::cout << "sigma: " << sigma << " ; I_diff_dbl: " << I_diff_dbl.getMeanValue() << std::endl;
const double threshold = 1.5;
CHECK(I_diff_dbl.getMeanValue() < threshold);
}
}
TEST_CASE("Test vpGaussianFilter (vpRGBa)")
{
const std::string filepath = vpIoTools::createFilePath(vpIoTools::getViSPImagesDataPath(), "Klimt/Klimt.ppm");
vpImageIo::read(I, filepath);
std::vector<float> sigmas = { 0.5f, 2.0f, 5.0f, 7.0f };
for (auto sigma : sigmas) {
vpGaussianFilter gaussianFilter(I.getWidth(), I.getHeight(), sigma);
vpImage<vpRGBa> I_blurred;
gaussianFilter.apply(I, I_blurred);
vpImage<vpRGBa> I_blurred_ref;
const std::string filepath_ref = vpIoTools::createFilePath(
vpIoTools::getViSPImagesDataPath(), "Gaussian-filter/Klimt_RGB_Gaussian_blur_sigma=%.1f.png");
char buffer[FILENAME_MAX];
snprintf(buffer, FILENAME_MAX, filepath_ref.c_str(), sigma);
const std::string filename = buffer;
vpImageIo::read(I_blurred_ref, filename);
vpImageTools::imageDifferenceAbsolute(I_blurred, I_blurred_ref, I_diff);
vpImage<unsigned char> I_diff_R, I_diff_G, I_diff_B;
vpImageConvert::split(I_diff, &I_diff_R, &I_diff_G, &I_diff_B);
vpImage<double> I_diff_R_dbl, I_diff_G_dbl, I_diff_B_dbl;
vpImageConvert::convert(I_diff_R, I_diff_R_dbl);
vpImageConvert::convert(I_diff_G, I_diff_G_dbl);
vpImageConvert::convert(I_diff_B, I_diff_B_dbl);
std::cout << "sigma: " << sigma << " ; I_diff_R_dbl: " << I_diff_R_dbl.getMeanValue()
<< " ; I_diff_G_dbl: " << I_diff_G_dbl.getMeanValue()
<< " ; I_diff_B_dbl: " << I_diff_B_dbl.getMeanValue() << std::endl;
const double threshold = 1.5;
CHECK(I_diff_R_dbl.getMeanValue() < threshold);
CHECK(I_diff_G_dbl.getMeanValue() < threshold);
CHECK(I_diff_B_dbl.getMeanValue() < threshold);
}
}
TEST_CASE("Test vpGaussianFilter (vpRGBa + deinterleave)")
{
const std::string filepath = vpIoTools::createFilePath(vpIoTools::getViSPImagesDataPath(), "Klimt/Klimt.ppm");
vpImageIo::read(I, filepath);
std::vector<float> sigmas = { 0.5f, 2.0f, 5.0f, 7.0f };
for (auto sigma : sigmas) {
const bool deinterleave = true;
vpGaussianFilter gaussianFilter(I.getWidth(), I.getHeight(), sigma, deinterleave);
vpImage<vpRGBa> I_blurred;
gaussianFilter.apply(I, I_blurred);
vpImage<vpRGBa> I_blurred_ref;
const std::string filepath_ref = vpIoTools::createFilePath(
vpIoTools::getViSPImagesDataPath(), "Gaussian-filter/Klimt_RGB_Gaussian_blur_sigma=%.1f.png");
char buffer[FILENAME_MAX];
snprintf(buffer, FILENAME_MAX, filepath_ref.c_str(), sigma);
const std::string filename = buffer;
vpImageIo::read(I_blurred_ref, filename);
vpImageTools::imageDifferenceAbsolute(I_blurred, I_blurred_ref, I_diff);
vpImage<unsigned char> I_diff_R, I_diff_G, I_diff_B;
vpImageConvert::split(I_diff, &I_diff_R, &I_diff_G, &I_diff_B);
vpImage<double> I_diff_R_dbl, I_diff_G_dbl, I_diff_B_dbl;
vpImageConvert::convert(I_diff_R, I_diff_R_dbl);
vpImageConvert::convert(I_diff_G, I_diff_G_dbl);
vpImageConvert::convert(I_diff_B, I_diff_B_dbl);
std::cout << "sigma: " << sigma << " ; I_diff_R_dbl: " << I_diff_R_dbl.getMeanValue()
<< " ; I_diff_G_dbl: " << I_diff_G_dbl.getMeanValue()
<< " ; I_diff_B_dbl: " << I_diff_B_dbl.getMeanValue() << std::endl;
const double threshold = 1.5;
CHECK(I_diff_R_dbl.getMeanValue() < threshold);
CHECK(I_diff_G_dbl.getMeanValue() < threshold);
CHECK(I_diff_B_dbl.getMeanValue() < threshold);
}
}
int main(int argc, char *argv[])
{
Catch::Session session; // There must be exactly one instance
// Let Catch (using Clara) parse the command line
session.applyCommandLine(argc, argv);
int numFailed = session.run();
// numFailed is clamped to 255 as some unices only use the lower 8 bits.
// This clamping has already been applied, so just return it here
// You can also do any post run clean-up here
return numFailed;
}
#else
int main() { return EXIT_SUCCESS; }
#endif
Gaussian filter class.
void apply(const vpImage< unsigned char > &I, vpImage< unsigned char > &I_blur)
static void split(const vpImage< vpRGBa > &src, vpImage< unsigned char > *pR, vpImage< unsigned char > *pG, vpImage< unsigned char > *pB, vpImage< unsigned char > *pa=nullptr)
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
static void read(vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
Definition: vpImageIo.cpp:143
static void imageDifferenceAbsolute(const vpImage< unsigned char > &I1, const vpImage< unsigned char > &I2, vpImage< unsigned char > &Idiff)
unsigned int getWidth() const
Definition: vpImage.h:245
unsigned int getHeight() const
Definition: vpImage.h:184
double getMeanValue(const vpImage< bool > *p_mask=nullptr, unsigned int *nbValidPoints=nullptr) const
Return the mean value of the bitmap.
Definition: vpImage.h:954
static std::string getViSPImagesDataPath()
Definition: vpIoTools.cpp:1832
static std::string createFilePath(const std::string &parent, const std::string &child)
Definition: vpIoTools.cpp:2195