5 #include <visp3/core/vpImage.h> 6 #include <visp3/gui/vpDisplayGDI.h> 7 #include <visp3/gui/vpDisplayOpenCV.h> 8 #include <visp3/gui/vpDisplayX.h> 9 #include <visp3/io/vpImageIo.h> 11 #if defined(VISP_HAVE_MODULE_IMGPROC) 12 #include <visp3/imgproc/vpImgproc.h> 17 int main(
int argc,
const char **argv)
20 #if defined(VISP_HAVE_MODULE_IMGPROC) && (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV)) 21 std::string input_filename =
"grid36-03.pgm";
25 for (
int i = 1; i < argc; i++) {
26 if (std::string(argv[i]) ==
"--input" && i + 1 < argc) {
27 input_filename = std::string(argv[i + 1]);
28 }
else if (std::string(argv[i]) ==
"--help" || std::string(argv[i]) ==
"-h") {
29 std::cout <<
"Usage: " << argv[0] <<
" [--input <input image>] [--help]" << std::endl;
42 #elif defined(VISP_HAVE_GDI) 44 #elif defined(VISP_HAVE_OPENCV) static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
unsigned int getWidth() const
virtual void setDownScalingFactor(unsigned int scale)
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...
void init(vpImage< unsigned char > &I, int winx=-1, int winy=-1, const std::string &title="")
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...
void insert(const vpImage< Type > &src, const vpImagePoint &topLeft)
VISP_EXPORT unsigned char autoThreshold(vpImage< unsigned char > &I, const vp::vpAutoThresholdMethod &method, const unsigned char backgroundValue=0, const unsigned char foregroundValue=255)
static void read(vpImage< unsigned char > &I, const std::string &filename)
unsigned int getHeight() const
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...