Visual Servoing Platform  version 3.1.0
vpMbDepthNormalTracker.cpp
1 /****************************************************************************
2  *
3  * This file is part of the ViSP software.
4  * Copyright (C) 2005 - 2017 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 depth normal features.
33  *
34  *****************************************************************************/
35 
36 #include <iostream>
37 
38 #include <visp3/core/vpConfig.h>
39 
40 #ifdef VISP_HAVE_PCL
41 #include <pcl/point_cloud.h>
42 #endif
43 
44 #include <visp3/core/vpDisplay.h>
45 #include <visp3/core/vpExponentialMap.h>
46 #include <visp3/core/vpTrackingException.h>
47 #include <visp3/mbt/vpMbDepthNormalTracker.h>
48 #include <visp3/mbt/vpMbtXmlGenericParser.h>
49 
50 #if DEBUG_DISPLAY_DEPTH_NORMAL
51 #include <visp3/gui/vpDisplayGDI.h>
52 #include <visp3/gui/vpDisplayX.h>
53 #endif
54 
56  : m_depthNormalFeatureEstimationMethod(vpMbtFaceDepthNormal::ROBUST_FEATURE_ESTIMATION),
57  m_depthNormalHiddenFacesDisplay(), m_depthNormalI_dummyVisibility(), m_depthNormalListOfActiveFaces(),
58  m_depthNormalListOfDesiredFeatures(), m_depthNormalFaces(), m_depthNormalPclPlaneEstimationMethod(2),
59  m_depthNormalPclPlaneEstimationRansacMaxIter(200), m_depthNormalPclPlaneEstimationRansacThreshold(0.001),
60  m_depthNormalSamplingStepX(2), m_depthNormalSamplingStepY(2), m_depthNormalUseRobust(false), m_error_depthNormal(),
61  m_L_depthNormal(), m_robust_depthNormal(), m_w_depthNormal(), m_weightedError_depthNormal()
62 #if DEBUG_DISPLAY_DEPTH_NORMAL
63  ,
64  m_debugDisp_depthNormal(NULL), m_debugImage_depthNormal()
65 #endif
66 {
67 #ifdef VISP_HAVE_OGRE
68  faces.getOgreContext()->setWindowName("MBT Depth");
69 #endif
70 
71 #if defined(VISP_HAVE_X11) && DEBUG_DISPLAY_DEPTH_NORMAL
72  m_debugDisp_depthNormal = new vpDisplayX;
73 #elif defined(VISP_HAVE_GDI) && DEBUG_DISPLAY_DEPTH_NORMAL
74  m_debugDisp_depthNormal = new vpDisplayGDI;
75 #endif
76 }
77 
79 {
80  for (size_t i = 0; i < m_depthNormalFaces.size(); i++) {
81  delete m_depthNormalFaces[i];
82  }
83 }
84 
85 void vpMbDepthNormalTracker::addFace(vpMbtPolygon &polygon, const bool alreadyClose)
86 {
87  if (polygon.nbpt < 3) {
88  return;
89  }
90 
91  // Copy hidden faces
93 
94  vpMbtFaceDepthNormal *normal_face = new vpMbtFaceDepthNormal;
95  normal_face->m_hiddenFace = &faces;
96  normal_face->m_polygon = &polygon;
97  normal_face->m_cam = cam;
98  normal_face->m_useScanLine = useScanLine;
99  normal_face->m_clippingFlag = clippingFlag;
100  normal_face->m_distNearClip = distNearClip;
101  normal_face->m_distFarClip = distFarClip;
106 
107  // Add lines that compose the face
108  unsigned int nbpt = polygon.getNbPoint();
109  if (nbpt > 0) {
110  for (unsigned int i = 0; i < nbpt - 1; i++) {
111  normal_face->addLine(polygon.p[i], polygon.p[i + 1], &m_depthNormalHiddenFacesDisplay, polygon.getIndex(),
112  polygon.getName());
113  }
114 
115  if (!alreadyClose) {
116  // Add last line that closes the face
117  normal_face->addLine(polygon.p[nbpt - 1], polygon.p[0], &m_depthNormalHiddenFacesDisplay, polygon.getIndex(),
118  polygon.getName());
119  }
120  }
121 
122  // Construct a vpPlane in object frame
123  vpPoint pts[3];
124  pts[0] = polygon.p[0];
125  pts[1] = polygon.p[1];
126  pts[2] = polygon.p[2];
127  normal_face->m_planeObject = vpPlane(pts[0], pts[1], pts[2], vpPlane::object_frame);
128 
129  m_depthNormalFaces.push_back(normal_face);
130 }
131 
132 void vpMbDepthNormalTracker::computeVisibility(const unsigned int width, const unsigned int height)
133 {
134  m_depthNormalI_dummyVisibility.resize(height, width);
135 
136  bool changed = false;
138 
139  if (useScanLine) {
140  // if (clippingFlag <= 2) {
141  // cam.computeFov(m_depthNormalI_dummyVisibility.getWidth(),
142  // m_depthNormalI_dummyVisibility.getHeight());
143  // }
144 
148  }
149 
150  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
151  it != m_depthNormalFaces.end(); ++it) {
152  vpMbtFaceDepthNormal *face_normal = *it;
153  face_normal->computeVisibility();
154  }
155 }
156 
158 {
159  double normRes = 0;
160  double normRes_1 = -1;
161  unsigned int iter = 0;
162 
163  computeVVSInit();
164  unsigned int nb_features = (unsigned int)(3 * m_depthNormalListOfDesiredFeatures.size());
165 
166  vpColVector error_prev(nb_features);
167  vpMatrix LTL;
168  vpColVector LTR, v;
169 
170  double mu = m_initialMu;
171  vpHomogeneousMatrix cMo_prev;
172 
173  bool isoJoIdentity_ = true;
175  vpMatrix L_true, LVJ_true;
176 
177  while (std::fabs(normRes_1 - normRes) > m_stopCriteriaEpsilon && (iter < m_maxIter)) {
179 
180  bool reStartFromLastIncrement = false;
181  computeVVSCheckLevenbergMarquardt(iter, m_error_depthNormal, error_prev, cMo_prev, mu, reStartFromLastIncrement);
182 
183  if (!reStartFromLastIncrement) {
186 
187  if (computeCovariance) {
188  L_true = m_L_depthNormal;
189  if (!isoJoIdentity_) {
191  cVo.buildFrom(cMo);
192  LVJ_true = (m_L_depthNormal * (cVo * oJo));
193  }
194  }
195 
196  // Compute DoF only once
197  if (iter == 0) {
198  isoJoIdentity_ = true;
199  oJo.eye();
200 
201  // If all the 6 dof should be estimated, we check if the interaction
202  // matrix is full rank. If not we remove automatically the dof that
203  // cannot be estimated This is particularly useful when consering
204  // circles (rank 5) and cylinders (rank 4)
205  if (isoJoIdentity_) {
206  cVo.buildFrom(cMo);
207 
208  vpMatrix K; // kernel
209  unsigned int rank = (m_L_depthNormal * cVo).kernel(K);
210  if (rank == 0) {
211  throw vpException(vpException::fatalError, "Rank=0, cannot estimate the pose !");
212  }
213 
214  if (rank != 6) {
215  vpMatrix I; // Identity
216  I.eye(6);
217  oJo = I - K.AtA();
218 
219  isoJoIdentity_ = false;
220  }
221  }
222  }
223 
224  double num = 0.0, den = 0.0;
225  for (unsigned int i = 0; i < m_L_depthNormal.getRows(); i++) {
226  // Compute weighted errors and stop criteria
228  num += m_w_depthNormal[i] * vpMath::sqr(m_error_depthNormal[i]);
229  den += m_w_depthNormal[i];
230 
231  // weight interaction matrix
232  for (unsigned int j = 0; j < 6; j++) {
233  m_L_depthNormal[i][j] *= m_w_depthNormal[i];
234  }
235  }
236 
238  m_error_depthNormal, error_prev, LTR, mu, v);
239 
240  cMo_prev = cMo;
242 
243  normRes_1 = normRes;
244  normRes = sqrt(num / den);
245  }
246 
247  iter++;
248  }
249 
250  computeCovarianceMatrixVVS(isoJoIdentity_, m_w_depthNormal, cMo_prev, L_true, LVJ_true, m_error_depthNormal);
251 }
252 
254 {
255  unsigned int nb_features = (unsigned int)(3 * m_depthNormalListOfDesiredFeatures.size());
256 
257  m_L_depthNormal.resize(nb_features, 6, false, false);
258  m_error_depthNormal.resize(nb_features, false);
259  m_weightedError_depthNormal.resize(nb_features, false);
260 
261  m_w_depthNormal.resize(nb_features, false);
262  m_w_depthNormal = 1;
263 
264  m_robust_depthNormal.resize(nb_features);
266 }
267 
269 {
270  unsigned int cpt = 0;
271  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalListOfActiveFaces.begin();
272  it != m_depthNormalListOfActiveFaces.end(); ++it) {
273  vpMatrix L_face;
274  vpColVector features_face;
275  (*it)->computeInteractionMatrix(cMo, L_face, features_face);
276 
277  vpColVector face_error = features_face - m_depthNormalListOfDesiredFeatures[(size_t)cpt];
278 
279  m_error_depthNormal.insert(cpt * 3, face_error);
280  m_L_depthNormal.insert(L_face, cpt * 3, 0);
281 
282  cpt++;
283  }
284 }
285 
287  const vpCameraParameters &cam_, const vpColor &col, const unsigned int thickness,
288  const bool displayFullModel)
289 {
290  vpCameraParameters c = cam_;
291 
292  bool changed = false;
294 
295  if (useScanLine) {
296  c.computeFov(I.getWidth(), I.getHeight());
297 
300  }
301 
302  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
303  it != m_depthNormalFaces.end(); ++it) {
304  vpMbtFaceDepthNormal *face_normal = *it;
305  face_normal->display(I, cMo_, c, col, thickness, displayFullModel);
306 
307  if (displayFeatures) {
308  face_normal->displayFeature(I, cMo_, c, 0.05, thickness);
309  }
310  }
311 }
312 
314  const vpCameraParameters &cam_, const vpColor &col, const unsigned int thickness,
315  const bool displayFullModel)
316 {
317  vpCameraParameters c = cam_;
318 
319  bool changed = false;
320  vpImage<unsigned char> I_dummy;
321  vpImageConvert::convert(I, I_dummy);
323 
324  if (useScanLine) {
325  c.computeFov(I.getWidth(), I.getHeight());
326 
329  }
330 
331  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
332  it != m_depthNormalFaces.end(); ++it) {
333  vpMbtFaceDepthNormal *face_normal = *it;
334  face_normal->display(I, cMo_, c, col, thickness, displayFullModel);
335 
336  if (displayFeatures) {
337  face_normal->displayFeature(I, cMo_, c, 0.05, thickness);
338  }
339  }
340 }
341 
343 {
344  if (!modelInitialised) {
345  throw vpException(vpException::fatalError, "model not initialized");
346  }
347 
348  bool reInitialisation = false;
349  if (!useOgre) {
350  faces.setVisible(I, cam, cMo, angleAppears, angleDisappears, reInitialisation);
351  } else {
352 #ifdef VISP_HAVE_OGRE
353  if (!faces.isOgreInitialised()) {
356  faces.initOgre(cam);
357  // Turn off Ogre config dialog display for the next call to this
358  // function since settings are saved in the ogre.cfg file and used
359  // during the next call
360  ogreShowConfigDialog = false;
361  }
362 
363  faces.setVisibleOgre(I, cam, cMo, angleAppears, angleDisappears, reInitialisation);
364 #else
365  faces.setVisible(I, cam, cMo, angleAppears, angleDisappears, reInitialisation);
366 #endif
367  }
368 
369  if (useScanLine || clippingFlag > 3)
370  cam.computeFov(I.getWidth(), I.getHeight());
371 
373 }
374 
375 void vpMbDepthNormalTracker::loadConfigFile(const std::string &configFile)
376 {
377 #ifdef VISP_HAVE_XML2
379 
380  xmlp.setCameraParameters(cam);
383 
390 
391  try {
392  std::cout << " *********** Parsing XML for Mb Depth Tracker ************ " << std::endl;
393  xmlp.parse(configFile);
394  } catch (vpException &e) {
395  std::cerr << "Exception: " << e.what() << std::endl;
396  throw vpException(vpException::ioError, "Cannot open XML file \"%s\"", configFile.c_str());
397  }
398 
399  vpCameraParameters camera;
400  xmlp.getCameraParameters(camera);
401  setCameraParameters(camera);
402 
405 
406  if (xmlp.hasNearClippingDistance())
408 
409  if (xmlp.hasFarClippingDistance())
411 
412  if (xmlp.getFovClipping())
414 
420 #else
421  std::cerr << "You need the libXML2 to read the config file " << configFile << std::endl;
422 #endif
423 }
424 
425 void vpMbDepthNormalTracker::reInitModel(const vpImage<unsigned char> &I, const std::string &cad_name,
426  const vpHomogeneousMatrix &cMo_, const bool verbose)
427 {
428  cMo.eye();
429 
430  for (size_t i = 0; i < m_depthNormalFaces.size(); i++) {
431  delete m_depthNormalFaces[i];
432  m_depthNormalFaces[i] = NULL;
433  }
434 
435  m_depthNormalFaces.clear();
436 
437  loadModel(cad_name, verbose);
438  initFromPose(I, cMo_);
439 }
440 
441 #if defined(VISP_HAVE_PCL)
442 void vpMbDepthNormalTracker::reInitModel(const pcl::PointCloud<pcl::PointXYZ>::ConstPtr &point_cloud,
443  const std::string &cad_name, const vpHomogeneousMatrix &cMo_,
444  const bool verbose)
445 {
446  vpImage<unsigned char> I_dummy(point_cloud->height, point_cloud->width);
447  reInitModel(I_dummy, cad_name, cMo_, verbose);
448 }
449 
450 #endif
451 
453 {
454  cMo.eye();
455 
456  for (std::vector<vpMbtFaceDepthNormal *>::iterator it = m_depthNormalFaces.begin(); it != m_depthNormalFaces.end();
457  ++it) {
458  vpMbtFaceDepthNormal *normal_face = *it;
459  delete normal_face;
460  normal_face = NULL;
461  }
462 
463  m_depthNormalFaces.clear();
464 
465  m_computeInteraction = true;
466  computeCovariance = false;
467 
470 
472 
473  m_lambda = 1.0;
474 
475  faces.reset();
476 
478 
479  useScanLine = false;
480 
481 #ifdef VISP_HAVE_OGRE
482  useOgre = false;
483 #endif
484 
487 }
488 
490 {
492 #ifdef VISP_HAVE_OGRE
493  faces.getOgreContext()->setWindowName("MBT Depth");
494 #endif
495 }
496 
498 {
499  cMo = cdMo;
500  init(I);
501 }
502 
503 #if defined(VISP_HAVE_PCL)
504 void vpMbDepthNormalTracker::setPose(const pcl::PointCloud<pcl::PointXYZ>::ConstPtr &point_cloud,
505  const vpHomogeneousMatrix &cdMo)
506 {
507  vpImage<unsigned char> I_dummy(point_cloud->height, point_cloud->width);
508  cMo = cdMo;
509  init(I_dummy);
510 }
511 #endif
512 
514 {
516 
517  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
518  it != m_depthNormalFaces.end(); ++it) {
519  (*it)->setScanLineVisibilityTest(v);
520  }
521 }
522 
524 
525 #ifdef VISP_HAVE_PCL
526 void vpMbDepthNormalTracker::segmentPointCloud(const pcl::PointCloud<pcl::PointXYZ>::ConstPtr &point_cloud)
527 {
530 
531 #if DEBUG_DISPLAY_DEPTH_NORMAL
532  if (!m_debugDisp_depthNormal->isInitialised()) {
533  m_debugImage_depthNormal.resize(point_cloud->height, point_cloud->width);
534  m_debugDisp_depthNormal->init(m_debugImage_depthNormal, 50, 0, "Debug display normal depth tracker");
535  }
536 
537  m_debugImage_depthNormal = 0;
538  std::vector<std::vector<vpImagePoint> > roiPts_vec;
539 #endif
540 
541  for (std::vector<vpMbtFaceDepthNormal *>::iterator it = m_depthNormalFaces.begin(); it != m_depthNormalFaces.end();
542  ++it) {
543  vpMbtFaceDepthNormal *face = *it;
544 
545  if (face->isVisible()) {
546  vpColVector desired_features;
547 
548 #if DEBUG_DISPLAY_DEPTH_NORMAL
549  std::vector<std::vector<vpImagePoint> > roiPts_vec_;
550 #endif
551  if (face->computeDesiredFeatures(cMo, point_cloud->width, point_cloud->height, point_cloud, desired_features,
553 #if DEBUG_DISPLAY_DEPTH_NORMAL
554  ,
555  m_debugImage_depthNormal, roiPts_vec_
556 #endif
557  )) {
558  m_depthNormalListOfDesiredFeatures.push_back(desired_features);
559  m_depthNormalListOfActiveFaces.push_back(face);
560 
561 #if DEBUG_DISPLAY_DEPTH_NORMAL
562  roiPts_vec.insert(roiPts_vec.end(), roiPts_vec_.begin(), roiPts_vec_.end());
563 #endif
564  }
565  }
566  }
567 
568 #if DEBUG_DISPLAY_DEPTH_NORMAL
569  vpDisplay::display(m_debugImage_depthNormal);
570 
571  for (size_t i = 0; i < roiPts_vec.size(); i++) {
572  if (roiPts_vec[i].empty())
573  continue;
574 
575  for (size_t j = 0; j < roiPts_vec[i].size() - 1; j++) {
576  vpDisplay::displayLine(m_debugImage_depthNormal, roiPts_vec[i][j], roiPts_vec[i][j + 1], vpColor::red, 2);
577  }
578  vpDisplay::displayLine(m_debugImage_depthNormal, roiPts_vec[i][0], roiPts_vec[i][roiPts_vec[i].size() - 1],
579  vpColor::red, 2);
580  }
581 
582  vpDisplay::flush(m_debugImage_depthNormal);
583 #endif
584 }
585 #endif
586 
587 void vpMbDepthNormalTracker::segmentPointCloud(const std::vector<vpColVector> &point_cloud, const unsigned int width,
588  const unsigned int height)
589 {
592 
593 #if DEBUG_DISPLAY_DEPTH_NORMAL
594  if (!m_debugDisp_depthNormal->isInitialised()) {
595  m_debugImage_depthNormal.resize(height, width);
596  m_debugDisp_depthNormal->init(m_debugImage_depthNormal, 50, 0, "Debug display normal depth tracker");
597  }
598 
599  m_debugImage_depthNormal = 0;
600  std::vector<std::vector<vpImagePoint> > roiPts_vec;
601 #endif
602 
603  for (std::vector<vpMbtFaceDepthNormal *>::iterator it = m_depthNormalFaces.begin(); it != m_depthNormalFaces.end();
604  ++it) {
605  vpMbtFaceDepthNormal *face = *it;
606 
607  if (face->isVisible()) {
608  vpColVector desired_features;
609 
610 #if DEBUG_DISPLAY_DEPTH_NORMAL
611  std::vector<std::vector<vpImagePoint> > roiPts_vec_;
612 #endif
613 
614  if (face->computeDesiredFeatures(cMo, width, height, point_cloud, desired_features, m_depthNormalSamplingStepX,
616 #if DEBUG_DISPLAY_DEPTH_NORMAL
617  ,
618  m_debugImage_depthNormal, roiPts_vec_
619 #endif
620  )) {
621  m_depthNormalListOfDesiredFeatures.push_back(desired_features);
622  m_depthNormalListOfActiveFaces.push_back(face);
623 
624 #if DEBUG_DISPLAY_DEPTH_NORMAL
625  roiPts_vec.insert(roiPts_vec.end(), roiPts_vec_.begin(), roiPts_vec_.end());
626 #endif
627  }
628  }
629  }
630 
631 #if DEBUG_DISPLAY_DEPTH_NORMAL
632  vpDisplay::display(m_debugImage_depthNormal);
633 
634  for (size_t i = 0; i < roiPts_vec.size(); i++) {
635  if (roiPts_vec[i].empty())
636  continue;
637 
638  for (size_t j = 0; j < roiPts_vec[i].size() - 1; j++) {
639  vpDisplay::displayLine(m_debugImage_depthNormal, roiPts_vec[i][j], roiPts_vec[i][j + 1], vpColor::red, 2);
640  }
641  vpDisplay::displayLine(m_debugImage_depthNormal, roiPts_vec[i][0], roiPts_vec[i][roiPts_vec[i].size() - 1],
642  vpColor::red, 2);
643  }
644 
645  vpDisplay::flush(m_debugImage_depthNormal);
646 #endif
647 }
648 
650 {
651  this->cam = camera;
652 
653  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
654  it != m_depthNormalFaces.end(); ++it) {
655  (*it)->setCameraParameters(camera);
656  }
657 }
658 
660 {
661  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
662  it != m_depthNormalFaces.end(); ++it) {
663  (*it)->setFaceCentroidMethod(method);
664  }
665 }
666 
669 {
671 
672  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
673  it != m_depthNormalFaces.end(); ++it) {
674  (*it)->setFeatureEstimationMethod(method);
675  }
676 }
677 
679 {
681 
682  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
683  it != m_depthNormalFaces.end(); ++it) {
684  (*it)->setPclPlaneEstimationMethod(method);
685  }
686 }
687 
689 {
691 
692  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
693  it != m_depthNormalFaces.end(); ++it) {
694  (*it)->setPclPlaneEstimationRansacMaxIter(maxIter);
695  }
696 }
697 
699 {
701 
702  for (std::vector<vpMbtFaceDepthNormal *>::const_iterator it = m_depthNormalFaces.begin();
703  it != m_depthNormalFaces.end(); ++it) {
704  (*it)->setPclPlaneEstimationRansacThreshold(thresold);
705  }
706 }
707 
708 void vpMbDepthNormalTracker::setDepthNormalSamplingStep(const unsigned int stepX, const unsigned int stepY)
709 {
710  if (stepX == 0 || stepY == 0) {
711  std::cerr << "stepX and stepY must be greater than zero!" << std::endl;
712  return;
713  }
714 
717 }
718 
719 // void vpMbDepthNormalTracker::setDepthNormalUseRobust(const bool use) {
720 // m_depthNormalUseRobust = use;
721 //}
722 
724 {
725  throw vpException(vpException::fatalError, "Cannot track with a grayscale image!");
726 }
727 
728 #ifdef VISP_HAVE_PCL
729 void vpMbDepthNormalTracker::track(const pcl::PointCloud<pcl::PointXYZ>::ConstPtr &point_cloud)
730 {
731  segmentPointCloud(point_cloud);
732 
733  computeVVS();
734 
735  computeVisibility(point_cloud->width, point_cloud->height);
736 }
737 #endif
738 
739 void vpMbDepthNormalTracker::track(const std::vector<vpColVector> &point_cloud, const unsigned int width,
740  const unsigned int height)
741 {
742  segmentPointCloud(point_cloud, width, height);
743 
744  computeVVS();
745 
746  computeVisibility(width, height);
747 }
748 
749 void vpMbDepthNormalTracker::initCircle(const vpPoint & /*p1*/, const vpPoint & /*p2*/, const vpPoint & /*p3*/,
750  const double /*radius*/, const int /*idFace*/, const std::string & /*name*/)
751 {
752  throw vpException(vpException::fatalError, "vpMbDepthNormalTracker::initCircle() should not be called!");
753 }
754 
755 void vpMbDepthNormalTracker::initCylinder(const vpPoint & /*p1*/, const vpPoint & /*p2*/, const double /*radius*/,
756  const int /*idFace*/, const std::string & /*name*/)
757 {
758  throw vpException(vpException::fatalError, "vpMbDepthNormalTracker::initCylinder() should not be called!");
759 }
760 
762 
bool m_computeInteraction
Definition: vpMbTracker.h:187
void setWindowName(const Ogre::String &n)
Definition: vpAROgre.h:269
unsigned int getDepthNormalSamplingStepY() const
virtual void initFaceFromLines(vpMbtPolygon &polygon)
Implementation of a matrix and operations on matrices.
Definition: vpMatrix.h:104
vpMbtFaceDepthNormal::vpFeatureEstimationType m_depthNormalFeatureEstimationMethod
Method to estimate the desired features.
bool computeDesiredFeatures(const vpHomogeneousMatrix &cMo, const unsigned int width, const unsigned int height, const pcl::PointCloud< pcl::PointXYZ >::ConstPtr &point_cloud, vpColVector &desired_features, const unsigned int stepX, const unsigned int stepY)
bool m_depthNormalUseRobust
If true, use Tukey robust M-Estimator.
vpColVector m_w_depthNormal
Robust weights.
int getIndex() const
Definition: vpMbtPolygon.h:101
int getDepthNormalPclPlaneEstimationMethod() const
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)
static void convert(const vpImage< unsigned char > &src, vpImage< vpRGBa > &dest)
void parse(const std::string &filename)
vpMbHiddenFaces< vpMbtPolygon > faces
Set of faces describing the object.
Definition: vpMbTracker.h:145
Implementation of an homogeneous matrix and operations on such kind of matrices.
std::string getName() const
Definition: vpMbtPolygon.h:108
int m_depthNormalPclPlaneEstimationRansacMaxIter
PCL RANSAC maximum number of iterations.
vpMatrix AtA() const
Definition: vpMatrix.cpp:524
Display for windows using GDI (available on any windows 32 platform).
Definition: vpDisplayGDI.h:129
void resize(const unsigned int nrows, const unsigned int ncols, const bool flagNullify=true, const bool recopy_=true)
Definition: vpArray2D.h:171
virtual void setDepthNormalFaceCentroidMethod(const vpMbtFaceDepthNormal::vpFaceCentroidType &method)
vpColVector m_error_depthNormal
(s - s*)
unsigned int m_clippingFlag
Flags specifying which clipping to used.
Class to define colors available for display functionnalities.
Definition: vpColor.h:120
void setBackgroundSizeOgre(const unsigned int &h, const unsigned int &w)
double getFarClippingDistance() const
vpHomogeneousMatrix cMo
The current pose.
Definition: vpMbTracker.h:115
std::vector< vpColVector > m_depthNormalListOfDesiredFeatures
List of desired features.
virtual void track(const vpImage< unsigned char > &)
double getDepthNormalPclPlaneEstimationRansacThreshold() const
void setOgreShowConfigDialog(const bool showConfigDialog)
Use the X11 console to display images on unix-like OS. Thus to enable this class X11 should be instal...
Definition: vpDisplayX.h:151
bool modelInitialised
Definition: vpMbTracker.h:125
error that can be emited by ViSP classes.
Definition: vpException.h:71
vpPoint * p
corners in the object frame
Definition: vpPolygon3D.h:81
unsigned int getRows() const
Definition: vpArray2D.h:156
vpHomogeneousMatrix inverse() const
virtual void setDepthNormalPclPlaneEstimationMethod(const int method)
virtual void initFaceFromCorners(vpMbtPolygon &polygon)
bool useOgre
Use Ogre3d for visibility tests.
Definition: vpMbTracker.h:157
void getCameraParameters(vpCameraParameters &_cam) const
double getNearClippingDistance() const
double m_distNearClip
Distance for near clipping.
virtual void init(const vpImage< unsigned char > &I)
void addLine(vpPoint &p1, vpPoint &p2, vpMbHiddenFaces< vpMbtPolygon > *const faces, int polygon=-1, std::string name="")
virtual void initFromPose(const vpImage< unsigned char > &I, const std::string &initFile)
unsigned int setVisibleOgre(const vpImage< unsigned char > &I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angleAppears, const double &angleDisappears, bool &changed)
bool computeCovariance
Flag used to specify if the covariance matrix has to be computed or not.
Definition: vpMbTracker.h:130
static void flush(const vpImage< unsigned char > &I)
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)
bool m_useScanLine
Scan line visibility.
vpCameraParameters m_cam
Camera intrinsic parameters.
static const vpColor red
Definition: vpColor.h:180
Class that defines what is a point.
Definition: vpPoint.h:58
vpCameraParameters cam
The camera parameters.
Definition: vpMbTracker.h:113
void computeClippedPolygons(const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam)
unsigned int setVisible(const vpImage< unsigned char > &I, const vpCameraParameters &cam, const vpHomogeneousMatrix &cMo, const double &angle, bool &changed)
virtual void setPose(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cdMo)
void reInitModel(const vpImage< unsigned char > &I, const std::string &cad_name, const vpHomogeneousMatrix &cMo_, const bool verbose=false)
void setDepthNormalSamplingStepX(const unsigned int stepX)
vpColVector m_weightedError_depthNormal
Weighted error.
Parse an Xml file to extract configuration parameters of a mbtConfig object.Data parser for the model...
void initOgre(const vpCameraParameters &cam=vpCameraParameters())
double distFarClip
Distance for near clipping.
Definition: vpMbTracker.h:153
void setPclPlaneEstimationRansacThreshold(const double threshold)
vpMbtPolygon * m_polygon
Polygon defining the face.
vpAROgre * getOgreContext()
virtual void setDepthNormalSamplingStep(const unsigned int stepX, const unsigned int stepY)
void segmentPointCloud(const pcl::PointCloud< pcl::PointXYZ >::ConstPtr &point_cloud)
void insert(const vpMatrix &A, const unsigned int r, const unsigned int c)
Definition: vpMatrix.cpp:4512
vpMatrix oJo
The Degrees of Freedom to estimate.
Definition: vpMbTracker.h:117
unsigned int m_depthNormalSamplingStepX
Sampling step in x-direction.
Implementation of a polygon of the model used by the model-based tracker.
Definition: vpMbtPolygon.h:66
virtual void setDepthNormalPclPlaneEstimationRansacMaxIter(const int maxIter)
void setAngleDisappear(const double &adisappear)
double m_depthNormalPclPlaneEstimationRansacThreshold
PCL RANSAC threshold.
bool useScanLine
Use Scanline for visibility tests.
Definition: vpMbTracker.h:160
vpVelocityTwistMatrix buildFrom(const vpTranslationVector &t, const vpRotationMatrix &R)
static double sqr(double x)
Definition: vpMath.h:108
static void display(const vpImage< unsigned char > &I)
vpMbHiddenFaces< vpMbtPolygon > * m_hiddenFace
Pointer to the list of faces.
Generic class defining intrinsic camera parameters.
virtual void setOgreVisibilityTest(const bool &v)
unsigned int getNbPoint() const
Definition: vpPolygon3D.h:132
void resize(const unsigned int h, const unsigned int w)
resize the image : Image initialization
Definition: vpImage.h:856
double m_initialMu
Initial Mu for Levenberg Marquardt optimization loop.
Definition: vpMbTracker.h:195
double m_lambda
Gain of the virtual visual servoing stage.
Definition: vpMbTracker.h:189
virtual void computeVVSWeights(vpRobust &robust, const vpColVector &error, vpColVector &w)
vpMbtOptimizationMethod m_optimizationMethod
Optimization method used.
Definition: vpMbTracker.h:142
unsigned int getDepthNormalSamplingStepX() const
unsigned int m_depthNormalSamplingStepY
Sampling step in y-direction.
void setDepthNormalPclPlaneEstimationRansacMaxIter(const int maxIter)
double angleAppears
Angle used to detect a face appearance.
Definition: vpMbTracker.h:147
double m_distFarClip
Distance for near clipping.
unsigned int m_maxIter
Maximum number of iterations of the virtual visual servoing stage.
Definition: vpMbTracker.h:191
virtual void setScanLineVisibilityTest(const bool &v)
void setAngleAppear(const double &aappear)
const char * what() const
static double rad(double deg)
Definition: vpMath.h:102
virtual void computeVVSInteractionMatrixAndResidu()
void displayFeature(const vpImage< unsigned char > &I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam, const double scale=0.05, const unsigned int thickness=1)
void setFeatureEstimationMethod(const vpFeatureEstimationType &method)
void insert(unsigned int i, const vpColVector &v)
void addFace(vpMbtPolygon &polygon, const bool alreadyClose)
vpMatrix m_L_depthNormal
Interaction matrix.
vpRobust m_robust_depthNormal
Robust.
vpImage< unsigned char > m_depthNormalI_dummyVisibility
Dummy image used to compute the visibility.
virtual void setDepthNormalPclPlaneEstimationRansacThreshold(const double thresold)
unsigned int nbpt
Number of points used to define the polygon.
Definition: vpPolygon3D.h:76
virtual void loadConfigFile(const std::string &configFile)
double m_stopCriteriaEpsilon
Epsilon threshold to stop the VVS optimization loop.
Definition: vpMbTracker.h:193
static double deg(double rad)
Definition: vpMath.h:95
virtual void setOgreVisibilityTest(const bool &v)
bool displayFeatures
If true, the features are displayed.
Definition: vpMbTracker.h:140
virtual void loadModel(const char *modelFile, const bool verbose=false)
unsigned int getHeight() const
Definition: vpImage.h:178
std::vector< vpMbtFaceDepthNormal * > m_depthNormalFaces
List of faces.
bool ogreShowConfigDialog
Definition: vpMbTracker.h:158
void setPclPlaneEstimationMethod(const int method)
Implementation of column vector and the associated operations.
Definition: vpColVector.h:72
int m_depthNormalPclPlaneEstimationMethod
PCL plane estimation method.
virtual void computeVVSPoseEstimation(const bool isoJoIdentity_, const unsigned int iter, vpMatrix &L, vpMatrix &LTL, vpColVector &R, const vpColVector &error, vpColVector &error_prev, vpColVector &LTR, double &mu, vpColVector &v, const vpColVector *const w=NULL, vpColVector *const m_w_prev=NULL)
std::vector< vpMbtFaceDepthNormal * > m_depthNormalListOfActiveFaces
List of current active (visible and with features extracted) faces.
static vpHomogeneousMatrix direct(const vpColVector &v)
virtual void computeCovarianceMatrixVVS(const bool isoJoIdentity_, const vpColVector &w_true, const vpHomogeneousMatrix &cMoPrev, const vpMatrix &L_true, const vpMatrix &LVJ_true, const vpColVector &error)
double angleDisappears
Angle used to detect a face disappearance.
Definition: vpMbTracker.h:149
virtual void initCircle(const vpPoint &p1, const vpPoint &p2, const vpPoint &p3, const double radius, const int idFace=0, const std::string &name="")
int getDepthNormalPclPlaneEstimationRansacMaxIter() const
void setPclPlaneEstimationRansacMaxIter(const int maxIter)
void setCameraParameters(const vpCameraParameters &_cam)
virtual void setScanLineVisibilityTest(const bool &v)
Definition: vpMbTracker.h:533
virtual void setClipping(const unsigned int &flags)
void computeVisibility(const unsigned int width, const unsigned int height)
static void displayLine(const vpImage< unsigned char > &I, const vpImagePoint &ip1, const vpImagePoint &ip2, const vpColor &color, unsigned int thickness=1)
void setDepthNormalFeatureEstimationMethod(const vpMbtFaceDepthNormal::vpFeatureEstimationType &method)
This class defines the container for a plane geometrical structure.
Definition: vpPlane.h:58
unsigned int clippingFlag
Flags specifying which clipping to used.
Definition: vpMbTracker.h:155
virtual void setDepthNormalFeatureEstimationMethod(const vpMbtFaceDepthNormal::vpFeatureEstimationType &method)
vpPlane m_planeObject
Plane equation described in the object frame.
vpMbHiddenFaces< vpMbtPolygon > m_depthNormalHiddenFacesDisplay
Set of faces describing the object used only for display with scan line.
virtual void initCylinder(const vpPoint &p1, const vpPoint &p2, const double radius, const int idFace=0, const std::string &name="")
void setThreshold(const double noise_threshold)
Definition: vpRobust.h:115
void setDepthNormalPclPlaneEstimationMethod(const int method)
virtual void setFarClippingDistance(const double &dist)
void setDepthNormalPclPlaneEstimationRansacThreshold(const double threshold)
void resize(unsigned int n_data)
Resize containers for sort methods.
Definition: vpRobust.cpp:128
unsigned int getWidth() const
Definition: vpImage.h:229
double distNearClip
Distance for near clipping.
Definition: vpMbTracker.h:151
void computeScanLineRender(const vpCameraParameters &cam, const unsigned int &w, const unsigned int &h)
void setDepthNormalSamplingStepY(const unsigned int stepY)
vpMbtFaceDepthNormal::vpFeatureEstimationType getDepthNormalFeatureEstimationMethod() const
void eye()
Definition: vpMatrix.cpp:360
virtual void computeVVSCheckLevenbergMarquardt(const unsigned int iter, vpColVector &error, const vpColVector &m_error_prev, const vpHomogeneousMatrix &cMoPrev, double &mu, bool &reStartFromLastIncrement, vpColVector *const w=NULL, const vpColVector *const m_w_prev=NULL)
virtual void setCameraParameters(const vpCameraParameters &camera)
void resize(const unsigned int i, const bool flagNullify=true)
Definition: vpColVector.h:241
virtual void setNearClippingDistance(const double &dist)
void computeFov(const unsigned int &w, const unsigned int &h)