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>
12 #if defined(VISP_HAVE_MODULE_IMGPROC)
14 #include <visp3/imgproc/vpImgproc.h>
18 int main(
int argc,
const char **argv)
21 #if defined(VISP_HAVE_MODULE_IMGPROC) && \
22 (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)) && \
23 (defined(VISP_HAVE_PNG) || defined(VISP_HAVE_OPENCV))
26 #ifdef ENABLE_VISP_NAMESPACE
30 std::string input_filename =
"Sample_low_brightness.png";
31 double alpha = 10.0, beta = 50.0;
35 int scale = 240, scaleDiv = 3, level = 0, kernelSize = -1;
38 for (
int i = 1; i < argc; i++) {
39 if (std::string(argv[i]) ==
"--input" && i + 1 < argc) {
40 input_filename = std::string(argv[i + 1]);
42 else if (std::string(argv[i]) ==
"--alpha" && i + 1 < argc) {
43 alpha = atof(argv[i + 1]);
45 else if (std::string(argv[i]) ==
"--beta" && i + 1 < argc) {
46 beta = atof(argv[i + 1]);
48 else if (std::string(argv[i]) ==
"--gamma" && i + 1 < argc) {
49 gamma = atof(argv[i + 1]);
51 else if ((std::string(argv[i]) ==
"--gamma-color-handling") && ((i + 1) < argc)) {
55 else if ((std::string(argv[i]) ==
"--gamma-method") && ((i + 1) < argc)) {
59 else if (std::string(argv[i]) ==
"--scale" && i + 1 < argc) {
60 scale = atoi(argv[i + 1]);
62 else if (std::string(argv[i]) ==
"--scaleDiv" && i + 1 < argc) {
63 scaleDiv = atoi(argv[i + 1]);
65 else if (std::string(argv[i]) ==
"--level" && i + 1 < argc) {
66 level = atoi(argv[i + 1]);
68 else if (std::string(argv[i]) ==
"--kernelSize" && i + 1 < argc) {
69 kernelSize = atoi(argv[i + 1]);
71 else if (std::string(argv[i]) ==
"--dynamic" && i + 1 < argc) {
72 dynamic = atof(argv[i + 1]);
74 else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
75 std::cout <<
"Usage: " << argv[0]
76 <<
" [--input <input image>]"
77 " [--alpha <alpha for VISP_NAMESPACE_NAME::adjust()>] [--beta <beta for "
78 "VISP_NAMESPACE_NAME::adjust()>]"
79 " [--gamma <gamma for VISP_NAMESPACE_NAME::gammaCorrection()>]"
82 " [--scale <scale for VISP_NAMESPACE_NAME::retinex()> [--scaleDiv for "
83 "VISP_NAMESPACE_NAME::retinex()]"
84 " [--level <level for VISP_NAMESPACE_NAME::retinex()> [--kernelSize "
85 "<kernelSize for VISP_NAMESPACE_NAME::retinex()>]"
86 " [--dynamic <dynamic for VISP_NAMESPACE_NAME::retinex()>] [--help]"
104 #elif defined(VISP_HAVE_GDI)
107 #elif defined(HAVE_OPENCV_HIGHGUI)
117 std::stringstream ss;
118 ss <<
"Sample_low_brightness_alpha=" << alpha <<
"_beta=" << beta <<
".png";
143 ss <<
"Sample_low_brightness_gray.png";
153 ss <<
"Sample_low_brightness_gamma=" << gamma <<
".png";
167 ss <<
"Sample_low_brightness_eqHist.png";
182 ss <<
"Sample_low_brightness_scale=" << scale <<
"_scaleDiv=" << scaleDiv <<
"_level=" << level
183 <<
"_dynamic=" << dynamic <<
"_kernelSize=" << kernelSize <<
".png";
Display for windows using GDI (available on any windows 32 platform).
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...
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 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)
static void write(const vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
unsigned int getWidth() const
unsigned int getHeight() const
VISP_EXPORT void adjust(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, double alpha, double beta)
VISP_EXPORT void gammaCorrection(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, const float &gamma, const vpGammaMethod &method=GAMMA_MANUAL, const VISP_NAMESPACE_ADDRESSING vpImage< bool > *p_mask=nullptr)
VISP_EXPORT void equalizeHistogram(VISP_NAMESPACE_ADDRESSING vpImage< unsigned char > &I, const VISP_NAMESPACE_ADDRESSING vpImage< bool > *p_mask=nullptr)
VISP_EXPORT void retinex(VISP_NAMESPACE_ADDRESSING vpImage< VISP_NAMESPACE_ADDRESSING vpRGBa > &I, int scale=240, int scaleDiv=3, int level=RETINEX_UNIFORM, double dynamic=1.2, int kernelSize=-1)
VISP_EXPORT vpGammaMethod vpGammaMethodFromString(const std::string &name)
Cast a string into a vpGammaMethod.
VISP_EXPORT vpGammaColorHandling vpGammaColorHandlingFromString(const std::string &name)
Cast a string into a vpGammaColorHandling.
vpGammaColorHandling
How to handle color images when applying Gamma Correction.
VISP_EXPORT std::string vpGammaMethodList(const std::string &pref="<", const std::string &sep=" , ", const std::string &suf=">")
Get the list of available vpGammaMethod.
VISP_EXPORT std::string vpGammaColorHandlingList(const std::string &pref="<", const std::string &sep=" , ", const std::string &suf=">")
Get the list of available vpGammaColorHandling.
vpGammaMethod
Gamma Correction automatic methods.