Visual Servoing Platform  version 3.6.1 under development (2024-07-27)
tutorial-contrast-sharpening.cpp
1 
3 #include <cstdlib>
4 #include <iostream>
5 #include <visp3/core/vpConfig.h>
6 #include <visp3/core/vpImage.h>
7 #include <visp3/gui/vpDisplayGDI.h>
8 #include <visp3/gui/vpDisplayOpenCV.h>
9 #include <visp3/gui/vpDisplayX.h>
10 #include <visp3/io/vpImageIo.h>
11 
12 #if defined(VISP_HAVE_MODULE_IMGPROC)
14 #include <visp3/imgproc/vpImgproc.h>
16 #endif
17 
18 int main(int argc, const char **argv)
19 {
21 #if defined(VISP_HAVE_MODULE_IMGPROC) && (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV))
24 
25 #ifdef ENABLE_VISP_NAMESPACE
26  using namespace VISP_NAMESPACE_NAME;
27 #endif
28 
29  std::string input_filename = "Crayfish-low-contrast.png";
30  int blockRadius = 150;
31  int bins = 256;
32  float slope = 3.0f;
33  float sigma = 2.0f;
34  double weight = 0.5;
35 
36  for (int i = 1; i < argc; i++) {
37  if (std::string(argv[i]) == "--input" && i + 1 < argc) {
38  input_filename = std::string(argv[i + 1]);
39  }
40  else if (std::string(argv[i]) == "--blockRadius" && i + 1 < argc) {
41  blockRadius = atoi(argv[i + 1]);
42  }
43  else if (std::string(argv[i]) == "--bins" && i + 1 < argc) {
44  bins = atoi(argv[i + 1]);
45  }
46  else if (std::string(argv[i]) == "--slope" && i + 1 < argc) {
47  slope = (float)atof(argv[i + 1]);
48  }
49  else if (std::string(argv[i]) == "--sigma" && i + 1 < argc) {
50  sigma = (float)atof(argv[i + 1]);
51  }
52  else if (std::string(argv[i]) == "--weight" && i + 1 < argc) {
53  weight = atof(argv[i + 1]);
54  }
55  else if (std::string(argv[i]) == "--help" || std::string(argv[i]) == "-h") {
56  std::cout << "Usage: " << argv[0]
57  << " [--input <input image>]"
58  " [--blockRadius <block radius for CLAHE>] "
59  " [--bins <nb histogram bins for CLAHE>] [--slope <slope for CLAHE>]"
60  " [--sigma <Gaussian kernel standard deviation>] [--weight <unsharp mask weighting>]"
61  " [--help] [-h]"
62  << std::endl;
63  return EXIT_SUCCESS;
64  }
65  }
66 
68  vpImage<vpRGBa> I_color;
69  vpImageIo::read(I_color, input_filename);
71 
72 #ifdef VISP_HAVE_X11
73  vpDisplayX d, d2, d3, d4, d5, d6;
74 #elif defined(VISP_HAVE_GDI)
75  vpDisplayGDI d, d2, d3, d4, d5, d6;
76 #elif defined(HAVE_OPENCV_HIGHGUI)
77  vpDisplayOpenCV d, d2, d3, d4, d5, d6;
78 #endif
79  d.init(I_color, 0, 0, "Input color image");
80 
82  vpImage<vpRGBa> I_stretch;
83  VISP_NAMESPACE_NAME::stretchContrast(I_color, I_stretch);
85  d2.init(I_stretch, I_color.getWidth(), 10, "Stretch contrast");
86 
88  vpImage<vpRGBa> I_stretch_hsv;
89  VISP_NAMESPACE_NAME::stretchContrastHSV(I_color, I_stretch_hsv);
91  d3.init(I_stretch_hsv, 0, I_color.getHeight() + 80, "Stretch contrast HSV");
92 
94  vpImage<vpRGBa> I_hist_eq;
95  VISP_NAMESPACE_NAME::equalizeHistogram(I_color, I_hist_eq);
97  d4.init(I_hist_eq, I_color.getWidth(), I_color.getHeight() + 80, "Histogram equalization");
98 
100  vpImage<vpRGBa> I_clahe;
101  VISP_NAMESPACE_NAME::clahe(I_color, I_clahe, blockRadius, bins, slope);
103  d5.init(I_clahe, 0, 2 * I_color.getHeight() + 80, "CLAHE");
104 
106  vpImage<vpRGBa> I_unsharp;
107  VISP_NAMESPACE_NAME::unsharpMask(I_clahe, I_unsharp, sigma, weight);
109  d6.init(I_unsharp, I_color.getWidth(), 2 * I_color.getHeight() + 80, "Unsharp mask");
110 
111  vpDisplay::display(I_color);
112  vpDisplay::display(I_stretch);
113  vpDisplay::display(I_stretch_hsv);
114  vpDisplay::display(I_hist_eq);
115  vpDisplay::display(I_clahe);
116  vpDisplay::display(I_unsharp);
117  vpDisplay::displayText(I_unsharp, 20, 20, "Click to quit.", vpColor::red);
118  vpDisplay::flush(I_color);
119  vpDisplay::flush(I_stretch);
120  vpDisplay::flush(I_stretch_hsv);
121  vpDisplay::flush(I_hist_eq);
122  vpDisplay::flush(I_clahe);
123  vpDisplay::flush(I_unsharp);
124  vpDisplay::getClick(I_unsharp);
125 #else
126  (void)argc;
127  (void)argv;
128 #endif
129  return EXIT_SUCCESS;
130 }
static const vpColor red
Definition: vpColor.h:217
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:130
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
Definition: vpDisplayX.h:135
void init(vpImage< unsigned char > &I, int win_x=-1, int win_y=-1, const std::string &win_title="") VP_OVERRIDE
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void display(const vpImage< unsigned char > &I)
static void flush(const vpImage< unsigned char > &I)
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
static void read(vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
Definition: vpImageIo.cpp:147
unsigned int getWidth() const
Definition: vpImage.h:242
unsigned int getHeight() const
Definition: vpImage.h:181
VISP_EXPORT void clahe(const VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I1, VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I2, int blockRadius=150, int bins=256, float slope=3.0f, bool fast=true)
VISP_EXPORT void stretchContrast(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I)
VISP_EXPORT void stretchContrastHSV(VISP_NAMESPACE_ADDRESSING vpImage< VISP_NAMESPACE_ADDRESSING vpRGBa > &I)
VISP_EXPORT void equalizeHistogram(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, const VISP_NAMESPACE_ADDRESSING vpImage< bool > *p_mask=nullptr)
VISP_EXPORT void unsharpMask(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, float sigma, double weight=0.6)