Visual Servoing Platform  version 3.6.1 under development (2024-07-27)
tutorial-blob-auto-tracker.cpp
1 #include <visp3/core/vpConfig.h>
3 #include <visp3/blob/vpDot2.h>
4 #include <visp3/gui/vpDisplayGDI.h>
5 #include <visp3/gui/vpDisplayOpenCV.h>
6 #include <visp3/gui/vpDisplayX.h>
7 #include <visp3/io/vpImageIo.h>
8 
9 int main()
10 {
11 #ifdef ENABLE_VISP_NAMESPACE
12  using namespace VISP_NAMESPACE_NAME;
13 #endif
14 
15  try {
16  bool learn = false;
17  vpImage<unsigned char> I; // Create a gray level image container
18 
19  vpImageIo::read(I, "./target.pgm");
20 
21 #if defined(VISP_HAVE_X11)
22  vpDisplayX d(I, 0, 0, "Camera view");
23 #elif defined(VISP_HAVE_GDI)
24  vpDisplayGDI d(I, 0, 0, "Camera view");
25 #elif defined(HAVE_OPENCV_HIGHGUI)
26  vpDisplayOpenCV d(I, 0, 0, "Camera view");
27 #else
28  std::cout << "No image viewer is available..." << std::endl;
29 #endif
32 
34  vpDot2 blob;
37  if (learn) {
38  // Learn the characteristics of the blob to auto detect
39  blob.setGraphics(true);
40  blob.setGraphicsThickness(1);
41  blob.initTracking(I);
42  blob.track(I);
43  std::cout << "Blob characteristics: " << std::endl;
44  std::cout << " width : " << blob.getWidth() << std::endl;
45  std::cout << " height: " << blob.getHeight() << std::endl;
46 #if VISP_VERSION_INT > VP_VERSION_INT(2, 7, 0)
47  std::cout << " area: " << blob.getArea() << std::endl;
48 #endif
49  std::cout << " gray level min: " << blob.getGrayLevelMin() << std::endl;
50  std::cout << " gray level max: " << blob.getGrayLevelMax() << std::endl;
51  std::cout << " grayLevelPrecision: " << blob.getGrayLevelPrecision() << std::endl;
52  std::cout << " sizePrecision: " << blob.getSizePrecision() << std::endl;
53  std::cout << " ellipsoidShapePrecision: " << blob.getEllipsoidShapePrecision() << std::endl;
54  }
57  else {
58  // Set blob characteristics for the auto detection
59  blob.setWidth(50);
60  blob.setHeight(50);
61 #if VISP_VERSION_INT > VP_VERSION_INT(2, 7, 0)
62  blob.setArea(1700);
63 #endif
64  blob.setGrayLevelMin(0);
65  blob.setGrayLevelMax(30);
66  blob.setGrayLevelPrecision(0.8);
67  blob.setSizePrecision(0.65);
68  blob.setEllipsoidShapePrecision(0.65);
69  }
71 
73  std::list<vpDot2> blob_list;
74  blob.searchDotsInArea(I, 0, 0, I.getWidth(), I.getHeight(), blob_list);
76 
78  if (learn) {
79  // The blob that is tracked by initTracking() is not in the list of auto
80  // detected blobs We add it:
81  blob_list.push_back(blob);
82  }
84  std::cout << "Number of auto detected blob: " << blob_list.size() << std::endl;
85  std::cout << "A click to exit..." << std::endl;
86 
87  while (1) {
89 
91  for (std::list<vpDot2>::iterator it = blob_list.begin(); it != blob_list.end(); ++it) {
92  (*it).setGraphics(true);
93  (*it).setGraphicsThickness(3);
94  (*it).track(I);
95  }
97 
99 
100  if (vpDisplay::getClick(I, false))
101  break;
102 
103  vpTime::wait(40);
104  }
105  }
106  catch (const vpException &e) {
107  std::cout << "Catch an exception: " << e << std::endl;
108  }
109 }
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:130
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...
Definition: vpDisplayX.h:135
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)
This tracker is meant to track a blob (connex pixels with same gray level) on a vpImage.
Definition: vpDot2.h:125
unsigned int getGrayLevelMin() const
Definition: vpDot2.h:219
unsigned int getGrayLevelMax() const
Definition: vpDot2.h:225
void track(const vpImage< unsigned char > &I, bool canMakeTheWindowGrow=true)
Definition: vpDot2.cpp:452
void setGraphics(bool activate)
Definition: vpDot2.h:318
void setGraphicsThickness(unsigned int thickness)
Definition: vpDot2.h:326
double getEllipsoidShapePrecision() const
Definition: vpDot2.cpp:651
void searchDotsInArea(const vpImage< unsigned char > &I, int area_u, int area_v, unsigned int area_w, unsigned int area_h, std::list< vpDot2 > &niceDots)
void setGrayLevelMax(const unsigned int &max)
Definition: vpDot2.h:357
double getArea() const
Definition: vpDot2.cpp:628
void setSizePrecision(const double &sizePrecision)
Definition: vpDot2.cpp:756
void setGrayLevelPrecision(const double &grayLevelPrecision)
Definition: vpDot2.cpp:726
void setGrayLevelMin(const unsigned int &min)
Definition: vpDot2.h:338
void setHeight(const double &height)
Definition: vpDot2.cpp:695
double getSizePrecision() const
Definition: vpDot2.cpp:642
double getGrayLevelPrecision() const
Definition: vpDot2.cpp:635
void setWidth(const double &width)
Definition: vpDot2.cpp:683
double getWidth() const
Definition: vpDot2.cpp:614
void setEllipsoidShapePrecision(const double &ellipsoidShapePrecision)
Definition: vpDot2.cpp:801
void setArea(const double &area)
Definition: vpDot2.cpp:707
void initTracking(const vpImage< unsigned char > &I, unsigned int size=0)
Definition: vpDot2.cpp:269
double getHeight() const
Definition: vpDot2.cpp:621
error that can be emitted by ViSP classes.
Definition: vpException.h:60
static void read(vpImage< unsigned char > &I, const std::string &filename, int backend=IO_DEFAULT_BACKEND)
Definition: vpImageIo.cpp:147
unsigned int getWidth() const
Definition: vpImage.h:242
unsigned int getHeight() const
Definition: vpImage.h:181
VISP_EXPORT int wait(double t0, double t)