Visual Servoing Platform  version 3.6.1 under development (2024-07-27)
vpMbEdgeTracker.h
1 /*
2  * ViSP, open source Visual Servoing Platform software.
3  * Copyright (C) 2005 - 2023 by Inria. All rights reserved.
4  *
5  * This software is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * See the file LICENSE.txt at the root directory of this source
10  * distribution for additional information about the GNU GPL.
11  *
12  * For using ViSP with software that can not be combined with the GNU
13  * GPL, please contact Inria about acquiring a ViSP Professional
14  * Edition License.
15  *
16  * See https://visp.inria.fr for more information.
17  *
18  * This software was developed at:
19  * Inria Rennes - Bretagne Atlantique
20  * Campus Universitaire de Beaulieu
21  * 35042 Rennes Cedex
22  * France
23  *
24  * If you have questions regarding the use of this file, please contact
25  * Inria at visp@inria.fr
26  *
27  * This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
28  * WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29  *
30  * Description:
31  * Make the complete tracking of an object by using its CAD model
32  */
33 
39 #ifndef vpMbEdgeTracker_HH
40 #define vpMbEdgeTracker_HH
41 
42 #include <visp3/core/vpConfig.h>
43 #include <visp3/core/vpPoint.h>
44 #include <visp3/mbt/vpMbTracker.h>
45 #include <visp3/mbt/vpMbtDistanceCircle.h>
46 #include <visp3/mbt/vpMbtDistanceCylinder.h>
47 #include <visp3/mbt/vpMbtDistanceLine.h>
48 #include <visp3/mbt/vpMbtMeLine.h>
49 #include <visp3/me/vpMe.h>
50 
51 #include <fstream>
52 #include <iostream>
53 #include <list>
54 #include <vector>
55 
56 #if defined(VISP_HAVE_COIN3D)
57 // Inventor includes
58 #include <Inventor/VRMLnodes/SoVRMLCoordinate.h>
59 #include <Inventor/VRMLnodes/SoVRMLGroup.h>
60 #include <Inventor/VRMLnodes/SoVRMLIndexedFaceSet.h>
61 #include <Inventor/VRMLnodes/SoVRMLIndexedLineSet.h>
62 #include <Inventor/VRMLnodes/SoVRMLShape.h>
63 #include <Inventor/actions/SoGetMatrixAction.h>
64 #include <Inventor/actions/SoGetPrimitiveCountAction.h>
65 #include <Inventor/actions/SoSearchAction.h>
66 #include <Inventor/actions/SoToVRML2Action.h>
67 #include <Inventor/actions/SoWriteAction.h>
68 #include <Inventor/misc/SoChildList.h>
69 #include <Inventor/nodes/SoSeparator.h>
70 #endif
71 
72 #if defined(VISP_HAVE_OPENCV) && defined(HAVE_OPENCV_IMGPROC)
73 #include <opencv2/imgproc/imgproc.hpp>
74 #include <opencv2/imgproc/imgproc_c.h>
75 #endif
76 
78 
248 class VISP_EXPORT vpMbEdgeTracker : public virtual vpMbTracker
249 {
250 protected:
256  std::vector<std::list<vpMbtDistanceLine *> > lines;
257 
259  std::vector<std::list<vpMbtDistanceCircle *> > circles;
260 
262  std::vector<std::list<vpMbtDistanceCylinder *> > cylinders;
263 
266  unsigned int nline;
267 
270  unsigned int ncircle;
271 
274  unsigned int ncylinder;
275 
277  unsigned int nbvisiblepolygone;
278 
282 
284  std::vector<bool> scales;
285 
288  std::vector<const vpImage<unsigned char> *> Ipyramid;
289 
293  unsigned int scaleLevel;
294 
297 
320  std::vector<std::vector<double> > m_featuresToBeDisplayedEdge;
321 
322 public:
323  vpMbEdgeTracker();
324  virtual ~vpMbEdgeTracker() VP_OVERRIDE;
325 
328 
329  virtual void display(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
330  const vpColor &col, unsigned int thickness = 1, bool displayFullModel = false) VP_OVERRIDE;
331  virtual void display(const vpImage<vpRGBa> &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
332  const vpColor &col, unsigned int thickness = 1, bool displayFullModel = false) VP_OVERRIDE;
333 
334  void getLline(std::list<vpMbtDistanceLine *> &linesList, unsigned int level = 0) const;
335  void getLcircle(std::list<vpMbtDistanceCircle *> &circlesList, unsigned int level = 0) const;
336  void getLcylinder(std::list<vpMbtDistanceCylinder *> &cylindersList, unsigned int level = 0) const;
337 
338  virtual std::vector<std::vector<double> > getModelForDisplay(unsigned int width, unsigned int height,
339  const vpHomogeneousMatrix &cMo,
340  const vpCameraParameters &cam,
341  bool displayFullModel = false) VP_OVERRIDE;
342 
349  virtual inline void getMovingEdge(vpMe &p_me) const { p_me = this->me; }
355  virtual inline vpMe getMovingEdge() const { return this->me; }
356 
357  virtual unsigned int getNbPoints(unsigned int level = 0) const;
358 
364  std::vector<bool> getScales() const { return scales; }
374  inline double getGoodMovingEdgesRatioThreshold() const { return percentageGdPt; }
375 
376  virtual inline vpColVector getError() const VP_OVERRIDE { return m_error_edge; }
377 
378  virtual inline vpColVector getRobustWeights() const VP_OVERRIDE { return m_w_edge; }
379 
380  virtual void loadConfigFile(const std::string &configFile, bool verbose = true) VP_OVERRIDE;
381 
382  virtual void reInitModel(const vpImage<unsigned char> &I, const std::string &cad_name, const vpHomogeneousMatrix &cMo,
383  bool verbose = false, const vpHomogeneousMatrix &T = vpHomogeneousMatrix());
384  void resetTracker() VP_OVERRIDE;
385 
391  virtual void setCameraParameters(const vpCameraParameters &cam) VP_OVERRIDE
392  {
393  m_cam = cam;
394 
395  for (unsigned int i = 0; i < scales.size(); i += 1) {
396  if (scales[i]) {
397  for (std::list<vpMbtDistanceLine *>::const_iterator it = lines[i].begin(); it != lines[i].end(); ++it) {
398  (*it)->setCameraParameters(m_cam);
399  }
400 
401  for (std::list<vpMbtDistanceCylinder *>::const_iterator it = cylinders[i].begin(); it != cylinders[i].end();
402  ++it) {
403  (*it)->setCameraParameters(m_cam);
404  }
405 
406  for (std::list<vpMbtDistanceCircle *>::const_iterator it = circles[i].begin(); it != circles[i].end(); ++it) {
407  (*it)->setCameraParameters(m_cam);
408  }
409  }
410  }
411  }
412 
413  virtual void setClipping(const unsigned int &flags) VP_OVERRIDE;
414 
415  virtual void setFarClippingDistance(const double &dist) VP_OVERRIDE;
416 
417  virtual void setNearClippingDistance(const double &dist) VP_OVERRIDE;
418 
427  virtual void setOgreVisibilityTest(const bool &v) VP_OVERRIDE
428  {
430 #ifdef VISP_HAVE_OGRE
431  faces.getOgreContext()->setWindowName("MBT Edge");
432 #endif
433  }
434 
440  virtual void setScanLineVisibilityTest(const bool &v) VP_OVERRIDE
441  {
443 
444  for (unsigned int i = 0; i < scales.size(); i += 1) {
445  if (scales[i]) {
446  for (std::list<vpMbtDistanceLine *>::const_iterator it = lines[i].begin(); it != lines[i].end(); ++it) {
447  (*it)->useScanLine = v;
448  }
449  }
450  }
451  }
452 
466  void setGoodMovingEdgesRatioThreshold(double threshold) { percentageGdPt = threshold; }
467 
468  void setMovingEdge(const vpMe &me);
469 
470  virtual void setPose(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &cdMo) VP_OVERRIDE;
471  virtual void setPose(const vpImage<vpRGBa> &I_color, const vpHomogeneousMatrix &cdMo) VP_OVERRIDE;
472 
473  void setScales(const std::vector<bool> &_scales);
474 
475  void setUseEdgeTracking(const std::string &name, const bool &useEdgeTracking);
476 
477  virtual void track(const vpImage<unsigned char> &I) VP_OVERRIDE;
478  virtual void track(const vpImage<vpRGBa> &I) VP_OVERRIDE;
480 
481 protected:
484  void addCircle(const vpPoint &P1, const vpPoint &P2, const vpPoint &P3, double r, int idFace = -1,
485  const std::string &name = "");
486  void addCylinder(const vpPoint &P1, const vpPoint &P2, double r, int idFace = -1, const std::string &name = "");
487  void addLine(vpPoint &p1, vpPoint &p2, int polygon = -1, std::string name = "");
488  void addPolygon(vpMbtPolygon &p);
489 
490  void cleanPyramid(std::vector<const vpImage<unsigned char> *> &_pyramid);
491  void computeProjectionError(const vpImage<unsigned char> &_I);
492 
493  void computeVVS(const vpImage<unsigned char> &_I, unsigned int lvl);
494  void computeVVSFirstPhase(const vpImage<unsigned char> &I, unsigned int iter, double &count, unsigned int lvl = 0);
495  void computeVVSFirstPhaseFactor(const vpImage<unsigned char> &I, unsigned int lvl = 0);
496  void computeVVSFirstPhasePoseEstimation(unsigned int iter, bool &isoJoIdentity);
497  virtual void computeVVSInit() VP_OVERRIDE;
498  virtual void computeVVSInteractionMatrixAndResidu() VP_OVERRIDE;
499  virtual void computeVVSInteractionMatrixAndResidu(const vpImage<unsigned char> &I);
500  virtual void computeVVSWeights();
501  using vpMbTracker::computeVVSWeights;
502 
503  void displayFeaturesOnImage(const vpImage<unsigned char> &I);
504  void displayFeaturesOnImage(const vpImage<vpRGBa> &I);
505  void downScale(const unsigned int _scale);
506  virtual std::vector<std::vector<double> > getFeaturesForDisplayEdge();
507  virtual void init(const vpImage<unsigned char> &I) VP_OVERRIDE;
508  virtual void initCircle(const vpPoint &p1, const vpPoint &p2, const vpPoint &p3, double radius, int idFace = 0,
509  const std::string &name = "") VP_OVERRIDE;
510  virtual void initCylinder(const vpPoint &p1, const vpPoint &p2, double radius, int idFace = 0,
511  const std::string &name = "") VP_OVERRIDE;
512  virtual void initFaceFromCorners(vpMbtPolygon &polygon) VP_OVERRIDE;
513  virtual void initFaceFromLines(vpMbtPolygon &polygon) VP_OVERRIDE;
514  unsigned int initMbtTracking(unsigned int &nberrors_lines, unsigned int &nberrors_cylinders,
515  unsigned int &nberrors_circles);
516  void initMovingEdge(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &_cMo);
517  void initPyramid(const vpImage<unsigned char> &_I, std::vector<const vpImage<unsigned char> *> &_pyramid);
518  void reInitLevel(const unsigned int _lvl);
519  void reinitMovingEdge(const vpImage<unsigned char> &I, const vpHomogeneousMatrix &_cMo);
520  void removeCircle(const std::string &name);
521  void removeCylinder(const std::string &name);
522  void removeLine(const std::string &name);
523  void resetMovingEdge();
524  virtual void testTracking() VP_OVERRIDE;
525  void trackMovingEdge(const vpImage<unsigned char> &I);
526  void updateMovingEdge(const vpImage<unsigned char> &I);
527  void updateMovingEdgeWeights();
528  void upScale(const unsigned int _scale);
529  void visibleFace(const vpImage<unsigned char> &_I, const vpHomogeneousMatrix &_cMo, bool &newvisibleline);
531 };
532 END_VISP_NAMESPACE
533 #endif
Generic class defining intrinsic camera parameters.
Implementation of column vector and the associated operations.
Definition: vpColVector.h:191
Class to define RGB colors available for display functionalities.
Definition: vpColor.h:157
Implementation of an homogeneous matrix and operations on such kind of matrices.
Definition of the vpImage class member functions.
Definition: vpImage.h:131
Implementation of a matrix and operations on matrices.
Definition: vpMatrix.h:169
Make the complete tracking of an object by using its CAD model.
double getGoodMovingEdgesRatioThreshold() const
vpColVector m_errorCircles
vpColVector m_w_edge
Robust weights.
vpRobust m_robust_edge
Robust.
std::vector< std::list< vpMbtDistanceLine * > > lines
vpMe me
The moving edges parameters.
std::vector< bool > getScales() const
virtual void setScanLineVisibilityTest(const bool &v) VP_OVERRIDE
vpColVector m_wLines
vpColVector m_error_edge
(s - s*)
unsigned int ncylinder
std::vector< std::list< vpMbtDistanceCylinder * > > cylinders
Vector of the tracked cylinders.
std::vector< std::vector< double > > m_featuresToBeDisplayedEdge
Display features.
unsigned int nbvisiblepolygone
Number of polygon (face) currently visible.
vpRobust m_robustCircles
std::vector< std::list< vpMbtDistanceCircle * > > circles
Vector of the tracked circles.
unsigned int scaleLevel
std::vector< const vpImage< unsigned char > * > Ipyramid
vpColVector m_weightedError_edge
Weighted error.
virtual void setOgreVisibilityTest(const bool &v) VP_OVERRIDE
unsigned int ncircle
std::vector< bool > scales
Vector of scale level to use for the multi-scale tracking.
vpMatrix m_L_edge
Interaction matrix.
vpRobust m_robustCylinders
void setGoodMovingEdgesRatioThreshold(double threshold)
vpRobust m_robustLines
virtual vpMe getMovingEdge() const
vpColVector m_wCylinders
unsigned int nbFeaturesForProjErrorComputation
Number of features used in the computation of the projection error.
vpColVector m_factor
Edge VVS variables.
virtual vpColVector getRobustWeights() const VP_OVERRIDE
vpColVector m_errorLines
vpColVector m_wCircles
unsigned int nline
virtual vpColVector getError() const VP_OVERRIDE
vpColVector m_errorCylinders
Main methods for a model-based tracker.
Definition: vpMbTracker.h:107
virtual void track(const vpImage< unsigned char > &I)=0
void addPolygon(const std::vector< vpPoint > &corners, int idFace=-1, const std::string &polygonName="", bool useLod=false, double minPolygonAreaThreshold=2500.0, double minLineLengthThreshold=50.0)
virtual void setScanLineVisibilityTest(const bool &v)
Definition: vpMbTracker.h:610
virtual void setOgreVisibilityTest(const bool &v)
virtual void setPose(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cdMo)=0
virtual void setNearClippingDistance(const double &dist)
virtual void setFarClippingDistance(const double &dist)
virtual void setClipping(const unsigned int &flags)
virtual void computeVVSInit()=0
virtual void loadConfigFile(const std::string &configFile, bool verbose=true)
Manage a circle used in the model-based tracker.
Manage a cylinder used in the model-based tracker.
Manage the line of a polygon used in the model-based tracker.
Implementation of a polygon of the model used by the model-based tracker.
Definition: vpMbtPolygon.h:60
Definition: vpMe.h:134
Class that defines a 3D point in the object frame and allows forward projection of a 3D point in the ...
Definition: vpPoint.h:79
Definition: vpRGBa.h:65
Contains an M-estimator and various influence function.
Definition: vpRobust.h:84