Visual Servoing Platform  version 3.1.0
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)) && \
15  (defined(VISP_HAVE_X11) || defined(VISP_HAVE_GDI) || defined(VISP_HAVE_OPENCV))
16  try {
19  vpImageIo::read(I, "bar-code.pgm");
20 
21 #ifdef VISP_HAVE_X11
22  vpDisplayX d(I);
23 #elif defined(VISP_HAVE_GDI)
24  vpDisplayGDI d(I);
25 #elif defined(VISP_HAVE_OPENCV)
26  vpDisplayOpenCV d(I);
27 #endif
28 
30  vpDetectorBase *detector = NULL;
32 
33 #if (defined(VISP_HAVE_ZBAR) && defined(VISP_HAVE_DMTX))
34  int opt_barcode = 0; // 0=QRCode, 1=DataMatrix
35 
36  for (int i = 0; i < argc; i++) {
37  if (std::string(argv[i]) == "--code-type")
38  opt_barcode = atoi(argv[i + 1]);
39  else if (std::string(argv[i]) == "--help") {
40  std::cout << "Usage: " << argv[0] << " [--code-type <0 for QRcode | 1 for DataMatrix>] [--help]" << std::endl;
41  return 0;
42  }
43  }
45  if (opt_barcode == 0)
46  detector = new vpDetectorQRCode;
47  else
48  detector = new vpDetectorDataMatrixCode;
50 #elif defined(VISP_HAVE_ZBAR)
51  detector = new vpDetectorQRCode;
52  (void)argc;
53  (void)argv;
54 #elif defined(VISP_HAVE_DMTX)
55  detector = new vpDetectorDataMatrixCode;
56  (void)argc;
57  (void)argv;
58 #endif
59 
61 
63  bool status = detector->detect(I);
65  std::ostringstream legend;
66  legend << detector->getNbObjects() << " bar code detected";
67  vpDisplay::displayText(I, (int)I.getHeight() - 30, 10, legend.str(), vpColor::red);
68 
70  if (status) {
71  for (size_t i = 0; i < detector->getNbObjects(); i++) {
74  std::vector<vpImagePoint> p = detector->getPolygon(i);
75  vpRect bbox = detector->getBBox(i);
79  vpDisplay::displayText(I, (int)(bbox.getTop() - 10), (int)bbox.getLeft(),
80  "Message: \"" + detector->getMessage(i) + "\"", vpColor::red);
82  for (size_t j = 0; j < p.size(); j++) {
83  vpDisplay::displayCross(I, p[j], 14, vpColor::red, 3);
84  std::ostringstream number;
85  number << j;
86  vpDisplay::displayText(I, p[j] + vpImagePoint(15, 5), number.str(), vpColor::blue);
87  }
88  }
89 
90  vpDisplay::displayText(I, (int)I.getHeight() - 15, 10, "A click to quit...", vpColor::red);
93  }
94  delete detector;
95  } catch (const vpException &e) {
96  std::cout << "Catch an exception: " << e.getMessage() << std::endl;
97  }
98 #else
99  (void)argc;
100  (void)argv;
101 #endif
102 }
vpRect getBBox(size_t i) const
double getTop() const
Definition: vpRect.h:175
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:129
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:151
error that can be emited by ViSP classes.
Definition: vpException.h:71
size_t getNbObjects() const
virtual bool detect(const vpImage< unsigned char > &I)=0
static const vpColor green
Definition: vpColor.h:183
static void flush(const vpImage< unsigned char > &I)
static const vpColor red
Definition: vpColor.h:180
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 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)
double getLeft() const
Definition: vpRect.h:156
const char * getMessage(void) const
Definition: vpException.cpp:90
static void displayCross(const vpImage< unsigned char > &I, const vpImagePoint &ip, unsigned int size, const vpColor &color, unsigned int thickness=1)
unsigned int getHeight() const
Definition: vpImage.h:178
static void read(vpImage< unsigned char > &I, const std::string &filename)
Definition: vpImageIo.cpp:207
Defines a rectangle in the plane.
Definition: vpRect.h:78
Class that defines a 2D point in an image. This class is useful for image processing and stores only ...
Definition: vpImagePoint.h:88
std::vector< std::string > & getMessage()
static const vpColor blue
Definition: vpColor.h:186
std::vector< std::vector< vpImagePoint > > & getPolygon()