3 #include <visp3/gui/vpDisplayD3D.h>
4 #include <visp3/gui/vpDisplayGDI.h>
5 #include <visp3/gui/vpDisplayGTK.h>
6 #include <visp3/gui/vpDisplayX.h>
7 #include <visp3/gui/vpDisplayOpenCV.h>
8 #include <visp3/io/vpImageIo.h>
9 #include <visp3/core/vpImageFilter.h>
16 #if defined(VISP_HAVE_X11)
18 #elif defined(VISP_HAVE_OPENCV)
20 #elif defined(VISP_HAVE_GTK)
22 #elif defined(VISP_HAVE_GDI)
24 #elif defined(VISP_HAVE_D3D9)
27 std::cout <<
"No image viewer is available..." << std::endl;
44 int main(
int argc,
char** argv )
48 printf(
"Usage: %s <image name.[pgm,ppm,jpeg,png,bmp]>\n", argv[0] );
59 std::cout <<
"Cannot read image \"" << argv[1] <<
"\"" << std::endl;
63 display(I,
"Original image");
69 display(F,
"Blur (default)");
72 display(F,
"Blur (var=2)");
78 display(dIx,
"Gradient dIx");
84 display(dIy,
"Gradient dIy");
87 #if (VISP_HAVE_OPENCV_VERSION >= 0x020100)
96 K[0][0] = 1; K[0][1] = 0; K[0][2] = -1;
97 K[1][0] = 2; K[1][1] = 0; K[1][2] = -2;
98 K[2][0] = 1; K[2][1] = 0; K[2][2] = -1;
104 display(Gx,
"Sobel x");
108 std::vector< vpImage<unsigned char> > pyr(nlevel);
110 for (
size_t i=1; i < nlevel; i++) {
112 display(pyr[i],
"Pyramid");
118 std::cout <<
"Catch an exception: " << e << std::endl;
static void getGaussPyramidal(const vpImage< unsigned char > &I, vpImage< unsigned char > &GI)
Implementation of a matrix and operations on matrices.
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
static void getGradX(const vpImage< unsigned char > &I, vpImage< double > &dIx)
static void getGradY(const vpImage< unsigned char > &I, vpImage< double > &dIy)
Display for windows using GDI (available on any windows 32 platform).
static void displayText(const vpImage< unsigned char > &I, const vpImagePoint &ip, const std::string &s, const vpColor &color)
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
error that can be emited by ViSP classes.
static void flush(const vpImage< unsigned char > &I)
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
static void gaussianBlur(const vpImage< unsigned char > &I, vpImage< double > &GI, unsigned int size=7, double sigma=0., bool normalize=true)
The vpDisplayGTK allows to display image using the GTK 3rd party library. Thus to enable this class G...
static void read(vpImage< unsigned char > &I, const std::string &filename)
static void filter(const vpImage< double > &I, vpImage< double > &Iu, vpImage< double > &Iv, const vpMatrix &M, const bool convolve=false)
static void canny(const vpImage< unsigned char > &I, vpImage< unsigned char > &Ic, const unsigned int gaussianFilterSize, const double thresholdCanny, const unsigned int apertureSobel)
static void setTitle(const vpImage< unsigned char > &I, const std::string &windowtitle)