Visual Servoing Platform  version 3.2.0 under development (2019-01-22)
vpMbKltTracker.h
1 /****************************************************************************
2  *
3  * ViSP, open source Visual Servoing Platform software.
4  * Copyright (C) 2005 - 2019 by Inria. All rights reserved.
5  *
6  * This software is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  * See the file LICENSE.txt at the root directory of this source
11  * distribution for additional information about the GNU GPL.
12  *
13  * For using ViSP with software that can not be combined with the GNU
14  * GPL, please contact Inria about acquiring a ViSP Professional
15  * Edition License.
16  *
17  * See http://visp.inria.fr for more information.
18  *
19  * This software was developed at:
20  * Inria Rennes - Bretagne Atlantique
21  * Campus Universitaire de Beaulieu
22  * 35042 Rennes Cedex
23  * France
24  *
25  * If you have questions regarding the use of this file, please contact
26  * Inria at visp@inria.fr
27  *
28  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
29  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
30  *
31  * Description:
32  * Model based tracker using only KLT
33  *
34  * Authors:
35  * Romain Tallonneau
36  * Aurelien Yol
37  *
38  *****************************************************************************/
44 #ifndef vpMbKltTracker_h
45 #define vpMbKltTracker_h
46 
47 #include <visp3/core/vpConfig.h>
48 
49 #if defined(VISP_HAVE_MODULE_KLT) && (defined(VISP_HAVE_OPENCV) && (VISP_HAVE_OPENCV_VERSION >= 0x020100))
50 
51 #include <visp3/core/vpExponentialMap.h>
52 #include <visp3/core/vpMeterPixelConversion.h>
53 #include <visp3/core/vpPixelMeterConversion.h>
54 #include <visp3/core/vpSubColVector.h>
55 #include <visp3/core/vpSubMatrix.h>
56 #include <visp3/klt/vpKltOpencv.h>
57 #include <visp3/mbt/vpMbTracker.h>
58 #include <visp3/mbt/vpMbtDistanceCircle.h>
59 #include <visp3/mbt/vpMbtDistanceKltCylinder.h>
60 #include <visp3/mbt/vpMbtDistanceKltPoints.h>
61 #include <visp3/mbt/vpMbtKltXmlParser.h>
62 #include <visp3/vision/vpHomography.h>
63 
232 class VISP_EXPORT vpMbKltTracker : public virtual vpMbTracker
233 {
234  friend class vpMbKltMultiTracker;
236 
237 protected:
239 #if (VISP_HAVE_OPENCV_VERSION >= 0x020408)
240  cv::Mat cur;
241 #else
242  IplImage *cur;
243 #endif
250  unsigned int maskBorder;
256  double percentGood;
263  std::list<vpMbtDistanceKltPoints *> kltPolygons;
265  std::list<vpMbtDistanceKltCylinder *> kltCylinders;
267  std::list<vpMbtDistanceCircle *> circles_disp;
269  unsigned int m_nbInfos;
271  unsigned int m_nbFaceUsed;
282 
283 public:
284  vpMbKltTracker();
285  virtual ~vpMbKltTracker();
286 
289 
290  void addCircle(const vpPoint &P1, const vpPoint &P2, const vpPoint &P3, const double r, const std::string &name = "");
291  virtual void display(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
292  const vpColor &col, const unsigned int thickness = 1, const bool displayFullModel = false);
293  virtual void display(const vpImage<vpRGBa> &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
294  const vpColor &col, const unsigned int thickness = 1, const bool displayFullModel = false);
295 
297  virtual std::list<vpMbtDistanceCircle *> &getFeaturesCircle() { return circles_disp; }
299  virtual std::list<vpMbtDistanceKltCylinder *> &getFeaturesKltCylinder() { return kltCylinders; }
301  virtual std::list<vpMbtDistanceKltPoints *> &getFeaturesKlt() { return kltPolygons; }
302 
308 #if (VISP_HAVE_OPENCV_VERSION >= 0x020408)
309  inline std::vector<cv::Point2f> getKltPoints() const { return tracker.getFeatures(); }
310 #else
311  inline CvPoint2D32f *getKltPoints() { return tracker.getFeatures(); }
312 #endif
313 
314  std::vector<vpImagePoint> getKltImagePoints() const;
315 
316  std::map<int, vpImagePoint> getKltImagePointsWithId() const;
317 
323  inline vpKltOpencv getKltOpencv() const { return tracker; }
324 
330  inline unsigned int getKltMaskBorder() const { return maskBorder; }
331 
337  inline int getKltNbPoints() const { return tracker.getNbFeatures(); }
338 
345  inline double getKltThresholdAcceptation() const { return threshold_outlier; }
346 
347  virtual inline vpColVector getError() const { return m_error_klt; }
348 
349  virtual inline vpColVector getRobustWeights() const { return m_w_klt; }
350 
351  virtual void loadConfigFile(const std::string &configFile);
352 
353  virtual void reInitModel(const vpImage<unsigned char> &I, const std::string &cad_name,
354  const vpHomogeneousMatrix &cMo_, const bool verbose = false,
356  void resetTracker();
357 
359 
365  inline void setKltMaskBorder(const unsigned int &e)
366  {
367  maskBorder = e;
368  // if(useScanLine)
369  faces.getMbScanLineRenderer().setMaskBorder(maskBorder);
370  }
371 
372  virtual void setKltOpencv(const vpKltOpencv &t);
373 
379  inline void setKltThresholdAcceptation(const double th) { threshold_outlier = th; }
380 
389  virtual void setOgreVisibilityTest(const bool &v)
390  {
392 #ifdef VISP_HAVE_OGRE
393  faces.getOgreContext()->setWindowName("MBT Klt");
394 #endif
395  }
396 
402  virtual void setScanLineVisibilityTest(const bool &v)
403  {
405 
406  for (std::list<vpMbtDistanceKltPoints *>::const_iterator it = kltPolygons.begin(); it != kltPolygons.end(); ++it)
407  (*it)->useScanLine = v;
408  }
409 
410  virtual void setPose(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &cdMo);
411 
418  virtual void setProjectionErrorComputation(const bool &flag)
419  {
420  if (flag)
421  std::cerr << "This option is not yet implemented in vpMbKltTracker, "
422  "projection error computation set to false."
423  << std::endl;
424  }
425 
426  void setUseKltTracking(const std::string &name, const bool &useKltTracking);
427 
428  virtual void testTracking();
429  virtual void track(const vpImage<unsigned char> &I);
430 
435 
442  /* vp_deprecated */ inline unsigned int getMaskBorder() const { return maskBorder; }
449  /* vp_deprecated */ inline int getNbKltPoints() const { return tracker.getNbFeatures(); }
450 
458  /* vp_deprecated */ inline double getThresholdAcceptation() const { return threshold_outlier; }
464  /* vp_deprecated */ inline void setMaskBorder(const unsigned int &e)
465  {
466  maskBorder = e;
467  // if(useScanLine)
468  faces.getMbScanLineRenderer().setMaskBorder(maskBorder);
469  }
470 
477  /* vp_deprecated */ inline void setThresholdAcceptation(const double th) { threshold_outlier = th; }
478 
480 
481 protected:
484  void computeVVS();
485  virtual void computeVVSInit();
487 
488  virtual void init(const vpImage<unsigned char> &I);
489  virtual void initFaceFromCorners(vpMbtPolygon &polygon);
490  virtual void initFaceFromLines(vpMbtPolygon &polygon);
491  virtual void initCircle(const vpPoint &, const vpPoint &, const vpPoint &, const double, const int,
492  const std::string &name = "");
493  virtual void initCylinder(const vpPoint &, const vpPoint &, const double, const int, const std::string &name = "");
494 
495  void preTracking(const vpImage<unsigned char> &I);
497  virtual void reinit(const vpImage<unsigned char> &I);
499 };
500 
501 #endif
502 #endif // VISP_HAVE_OPENCV
void setWindowName(const Ogre::String &n)
Definition: vpAROgre.h:269
void setThresholdAcceptation(const double th)
Implementation of a matrix and operations on matrices.
Definition: vpMatrix.h:104
virtual ~vpMbKltTracker()
virtual void setScanLineVisibilityTest(const bool &v)
virtual void track(const vpImage< unsigned char > &I)=0
virtual void computeVVSInteractionMatrixAndResidu()=0
virtual void addCircle(const vpPoint &P1, const vpPoint &P2, const vpPoint &P3, const double r, const std::string &name="")
virtual void setUseKltTracking(const std::string &name, const bool &useKltTracking)
virtual void computeVVSInit()=0
vpMbHiddenFaces< vpMbtPolygon > faces
Set of faces describing the object.
Definition: vpMbTracker.h:149
std::vector< cv::Point2f > getFeatures() const
Get the list of current features.
Definition: vpKltOpencv.h:105
Implementation of an homogeneous matrix and operations on such kind of matrices.
virtual std::list< vpMbtDistanceKltPoints * > & getFeaturesKlt()
virtual void setProjectionErrorComputation(const bool &flag)
virtual void loadConfigFile(const std::string &configFile)
Class to define colors available for display functionnalities.
Definition: vpColor.h:120
std::list< vpMbtDistanceKltCylinder * > kltCylinders
vpHomogeneousMatrix cMo
The current pose.
Definition: vpMbTracker.h:119
virtual void initCircle(const vpPoint &p1, const vpPoint &p2, const vpPoint &p3, const double radius, const int idFace=0, const std::string &name="")=0
vpMbScanLine & getMbScanLineRenderer()
vpColVector m_weightedError_klt
Weighted error.
Hybrid stereo (or more) tracker based on moving-edges and keypoints tracked using KLT tracker...
double getKltThresholdAcceptation() const
virtual vpColVector getError() const
virtual void reInitModel(const vpImage< unsigned char > &I, const std::string &cad_name, const vpHomogeneousMatrix &cMo_, const bool verbose=false, const vpHomogeneousMatrix &T=vpHomogeneousMatrix())
void setKltMaskBorder(const unsigned int &e)
virtual void resetTracker()=0
virtual void postTracking(std::map< std::string, const vpImage< unsigned char > * > &mapOfImages, const unsigned int lvl)
Class that defines what is a point.
Definition: vpPoint.h:58
int getKltNbPoints() const
vpCameraParameters cam
The camera parameters.
Definition: vpMbTracker.h:117
unsigned int getKltMaskBorder() const
vpHomogeneousMatrix ctTc0
virtual void init(const vpImage< unsigned char > &I)=0
unsigned int getMaskBorder() const
std::vector< cv::Point2f > getKltPoints() const
virtual std::map< std::string, std::vector< vpImagePoint > > getKltImagePoints() const
vpAROgre * getOgreContext()
vpRobust m_robust_klt
Robust.
virtual void display(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, const vpColor &col, const unsigned int thickness=1, const bool displayFullModel=false)=0
void setKltThresholdAcceptation(const double th)
Implementation of a polygon of the model used by the model-based tracker.
Definition: vpMbtPolygon.h:66
virtual void setCameraParameters(const vpCameraParameters &camera)
Definition: vpMbTracker.h:473
virtual std::list< vpMbtDistanceCircle * > & getFeaturesCircle()
virtual std::map< std::string, std::vector< cv::Point2f > > getKltPoints() const
unsigned int maskBorder
Erosion of the mask.
virtual void initFaceFromCorners(vpMbtPolygon &polygon)=0
Generic class defining intrinsic camera parameters.
unsigned int m_nbFaceUsed
Main methods for a model-based tracker.
Definition: vpMbTracker.h:110
virtual void preTracking(std::map< std::string, const vpImage< unsigned char > * > &mapOfImages)
Model based tracker using only KLT.
vpKltOpencv tracker
Points tracker.
double threshold_outlier
virtual void setKltOpencv(const vpKltOpencv &t)
virtual std::map< std::string, std::map< int, vpImagePoint > > getKltImagePointsWithId() const
cv::Mat cur
Temporary OpenCV image for fast conversion.
int getNbKltPoints() const
virtual vpColVector getRobustWeights() const
vpColVector m_w_klt
Robust weights.
vpKltOpencv getKltOpencv() const
std::list< vpMbtDistanceCircle * > circles_disp
Vector of the circles used here only to display the full model.
virtual std::list< vpMbtDistanceKltCylinder * > & getFeaturesKltCylinder()
virtual void setOgreVisibilityTest(const bool &v)
void setMaskBorder(const unsigned int &e)
Implementation of column vector and the associated operations.
Definition: vpColVector.h:72
virtual void initFaceFromLines(vpMbtPolygon &polygon)=0
virtual void setOgreVisibilityTest(const bool &v)
virtual void testTracking()=0
Wrapper for the KLT (Kanade-Lucas-Tomasi) feature tracker implemented in OpenCV. Thus to enable this ...
Definition: vpKltOpencv.h:78
int getNbFeatures() const
Get the number of current features.
Definition: vpKltOpencv.h:120
Contains an M-Estimator and various influence function.
Definition: vpRobust.h:58
double getThresholdAcceptation() const
virtual void setPose(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cdMo)=0
virtual void setScanLineVisibilityTest(const bool &v)
Definition: vpMbTracker.h:587
unsigned int m_nbInfos
vpColVector m_error_klt
(s - s*)
std::list< vpMbtDistanceKltPoints * > kltPolygons
Model based stereo (or more) tracker using only KLT.
vpHomogeneousMatrix c0Mo
Initial pose.
virtual void initCylinder(const vpPoint &p1, const vpPoint &p2, const double radius, const int idFace=0, const std::string &name="")=0
vpMatrix m_L_klt
Interaction matrix.