Visual Servoing Platform  version 3.0.1
 All Classes Namespaces Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
tutorial-barcode-detector.cpp
1 #include <visp3/detection/vpDetectorDataMatrixCode.h>
4 #include <visp3/detection/vpDetectorQRCode.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>
10 
11 int main(int argc, const char** argv)
12 {
14 #if (defined(VISP_HAVE_ZBAR) || defined(VISP_HAVE_DMTX)) && (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV))
15  try {
18  vpImageIo::read(I, "bar-code.pgm");
19 
20 #ifdef VISP_HAVE_X11
21  vpDisplayX d(I);
22 #elif defined(VISP_HAVE_GDI)
23  vpDisplayGDI d(I);
24 #elif defined(VISP_HAVE_OPENCV)
25  vpDisplayOpenCV d(I);
26 #endif
27 
29  vpDetectorBase *detector = NULL;
31 
32 #if (defined(VISP_HAVE_ZBAR) && defined(VISP_HAVE_DMTX))
33  int opt_barcode = 0; // 0=QRCode, 1=DataMatrix
34 
35  for (int i=0; i<argc; i++) {
36  if (std::string(argv[i]) == "--code-type")
37  opt_barcode = atoi(argv[i+1]);
38  else if (std::string(argv[i]) == "--help") {
39  std::cout << "Usage: " << argv[0]
40  << " [--code-type <0 for QRcode | 1 for DataMatrix>] [--help]"
41  << std::endl;
42  return 0;
43  }
44  }
46  if (opt_barcode == 0)
47  detector = new vpDetectorQRCode;
48  else
49  detector = new vpDetectorDataMatrixCode;
51 #elif defined(VISP_HAVE_ZBAR)
52  detector = new vpDetectorQRCode;
53  (void)argc;
54  (void)argv;
55 #elif defined(VISP_HAVE_DMTX)
56  detector = new vpDetectorDataMatrixCode;
57  (void)argc;
58  (void)argv;
59 #endif
60 
62 
64  bool status = detector->detect(I);
66  std::ostringstream legend;
67  legend << detector->getNbObjects() << " bar code detected";
68  vpDisplay::displayText(I, (int)I.getHeight()-30, 10, legend.str(), vpColor::red);
69 
71  if (status) {
72  for(size_t i=0; i < detector->getNbObjects(); i++) {
75  std::vector<vpImagePoint> p = detector->getPolygon(i);
76  vpRect bbox = detector->getBBox(i);
80  vpDisplay::displayText(I, (int)(bbox.getTop()-10), (int)bbox.getLeft(),
81  "Message: \"" + detector->getMessage(i) + "\"",
82  vpColor::red);
84  for(size_t j=0; j < p.size(); j++) {
85  vpDisplay::displayCross(I, p[j], 14, vpColor::red, 3);
86  std::ostringstream number;
87  number << j;
88  vpDisplay::displayText(I, p[j]+vpImagePoint(15,5), number.str(), vpColor::blue);
89  }
90  }
91 
92  vpDisplay::displayText(I, (int)I.getHeight()-15, 10, "A click to quit...", vpColor::red);
95  }
96  delete detector;
97  }
98  catch(const vpException &e) {
99  std::cout << "Catch an exception: " << e.getMessage() << std::endl;
100  }
101 #else
102  (void)argc;
103  (void)argv;
104 #endif
105 }
double getTop() const
Definition: vpRect.h:178
static bool getClick(const vpImage< unsigned char > &I, bool blocking=true)
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:128
Class to define colors available for display functionnalities.
Definition: vpColor.h:121
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...
Definition: vpDisplayX.h:153
error that can be emited by ViSP classes.
Definition: vpException.h:73
virtual bool detect(const vpImage< unsigned char > &I)=0
size_t getNbObjects() const
static const vpColor green
Definition: vpColor.h:166
static void flush(const vpImage< unsigned char > &I)
static const vpColor red
Definition: vpColor.h:163
std::vector< std::vector< vpImagePoint > > & getPolygon()
static void display(const vpImage< unsigned char > &I)
The vpDisplayOpenCV allows to display image using the OpenCV library. Thus to enable this class OpenC...
const char * getMessage(void) const
Definition: vpException.cpp:97
static void displayRectangle(const vpImage< unsigned char > &I, const vpImagePoint &topLeft, unsigned int width, unsigned int height, const vpColor &color, bool fill=false, unsigned int thickness=1)
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
static void read(vpImage< unsigned char > &I, const std::string &filename)
Definition: vpImageIo.cpp:205
unsigned int getHeight() const
Definition: vpImage.h:175
Defines a rectangle in the plane.
Definition: vpRect.h:82
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
Definition: vpImagePoint.h:88
vpRect getBBox(size_t i) const
static const vpColor blue
Definition: vpColor.h:169