/usr/include/visp/vpMbTracker.h is in libvisp-dev 2.9.0-3+b2.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 | /****************************************************************************
*
* $Id: vpMbTracker.h 4649 2014-02-07 14:57:11Z fspindle $
*
* This file is part of the ViSP software.
* Copyright (C) 2005 - 2014 by INRIA. All rights reserved.
*
* This software is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* ("GPL") version 2 as published by the Free Software Foundation.
* See the file LICENSE.txt at the root directory of this source
* distribution for additional information about the GNU GPL.
*
* For using ViSP with software that can not be combined with the GNU
* GPL, please contact INRIA about acquiring a ViSP Professional
* Edition License.
*
* See http://www.irisa.fr/lagadic/visp/visp.html for more information.
*
* This software was developed at:
* INRIA Rennes - Bretagne Atlantique
* Campus Universitaire de Beaulieu
* 35042 Rennes Cedex
* France
* http://www.irisa.fr/lagadic
*
* If you have questions regarding the use of this file, please contact
* INRIA at visp@inria.fr
*
* This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
* WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
*
* Description:
* Generic model based tracker. This class declares the methods to implement in
* order to have a model based tracker.
*
* Authors:
* Romain Tallonneau
* Aurélien Yol
*
*****************************************************************************/
/*!
\file vpMbTracker.h
\brief Generic model based tracker.
*/
#ifndef vpMbTracker_hh
#define vpMbTracker_hh
#include <visp/vpHomogeneousMatrix.h>
#include <visp/vpImage.h>
#include <visp/vpImagePoint.h>
#include <visp/vpColVector.h>
#include <visp/vpMatrix.h>
#include <visp/vpRGBa.h>
#include <visp/vpCameraParameters.h>
#include <visp/vpPoint.h>
#include <visp/vpMbtPolygon.h>
#include <visp/vpMbHiddenFaces.h>
#ifdef VISP_HAVE_COIN
//Work around to avoid type redefinition int8_t with Coin
// #if defined(_WIN32) && defined(VISP_HAVE_OGRE) && (_MSC_VER >= 1600) // Visual Studio 2010
// #define HAVE_INT8_T 1
// #endif
//Inventor includes
# include <Inventor/VRMLnodes/SoVRMLGroup.h>
# include <Inventor/VRMLnodes/SoVRMLIndexedFaceSet.h>
# include <Inventor/VRMLnodes/SoVRMLIndexedLineSet.h>
#endif
#include <vector>
#include <string>
/*!
\class vpMbTracker
\ingroup ModelBasedTracking
\brief Main methods for a model-based tracker.
This class provides the main methods for a model based tracker. This pure
virtual class must be used in inheritance for a tracker that compute the
interaction matrix and the residu vector using a defined information (edge,
points of interest, patch, ...)
This class intends to define a common basis for object tracking. This is
realised by implementing the main functions:
- init() : Initialisation of the tracker (it includes re-initialisation). This
method is called at the end of the initClick() method.
- initFaceFromCorners() : Initialisation of a face using its corners.
- track() : Tracking on the current image
- testTracking() : Test the tracking. This method throws exception if the
tracking failed.
- display() : Display the model and eventually other information.
In addition, two flags are declared in this class and may have to be
initialised in the child class :
- modelInitialised : flag to ensure that the model has been loaded.
initialised (either by loading them from a configuration file or by setting
them with the setCameraParameters() method).
*/
class VISP_EXPORT vpMbTracker
{
protected:
//! The camera parameters.
vpCameraParameters cam;
//! The current pose.
vpHomogeneousMatrix cMo;
//! The name of the file containing the model (it is used to create a file name.0.pos used to store the compute pose in the initClick method).
std::string modelFileName;
//! Flag used to ensure that the CAD model is loaded before the initialisation.
bool modelInitialised;
//! Filename used to save the initial pose computed using the initClick() method. It is also used to read a previous pose in the same method.
std::string poseSavingFilename;
//! Flag used to specify if the covariance matrix has to be computed or not.
bool computeCovariance;
//! Covariance matrix
vpMatrix covarianceMatrix;
//! If true, the features are displayed.
bool displayFeatures;
public:
vpMbTracker();
virtual ~vpMbTracker();
/*!
Display the 3D model at a given position using the given camera parameters
on a grey level image.
\param I : The image.
\param cMo : Pose used to project the 3D model into the image.
\param cam : The camera parameters.
\param col : The desired color.
\param thickness : The thickness of the lines.
\param displayFullModel : If true, the full model is displayed (even the non visible surfaces).
*/
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;
/*!
Display the 3D model at a given position using the given camera parameters
on a color (RGBa) image.
\param I : The image.
\param cMo : Pose used to project the 3D model into the image.
\param cam : The camera parameters.
\param col : The desired color.
\param thickness : The thickness of the lines.
\param displayFullModel : If true, the full model is displayed (even the non visible surfaces).
*/
virtual void display(const vpImage<vpRGBa>& I, const vpHomogeneousMatrix &cMo, const vpCameraParameters &cam,
const vpColor& col , const unsigned int thickness=1, const bool displayFullModel = false)=0;
/*!
Get the camera parameters.
\param camera : copy of the camera parameters used by the tracker.
*/
virtual void getCameraParameters(vpCameraParameters& camera) const { camera = this->cam;}
/*!
Get the covariance matrix.
*/
virtual vpMatrix getCovarianceMatrix() const {
if(!computeCovariance)
vpTRACE("Warning : The covariance matrix has not been computed. See setCovarianceComputation() to do it.");
return covarianceMatrix;
}
/*!
Get the current pose between the object and the camera.
cMo is the matrix which can be used to express
coordinates from the object frame to camera frame.
\param cMo_ : the pose
*/
inline void getPose(vpHomogeneousMatrix& cMo_) const {cMo_ = this->cMo;}
/*!
Get the current pose between the object and the camera.
cMo is the matrix which can be used to express
coordinates from the object frame to camera frame.
\return the current pose
*/
inline vpHomogeneousMatrix getPose() const {return this->cMo;}
/* PURE VIRTUAL METHODS */
/*!
Initialise the tracking.
\param I : Input image.
*/
virtual void init(const vpImage<unsigned char>& I)=0;
// Intializer
virtual void initClick( const vpImage<unsigned char>& I, const std::string& initFile, const bool displayHelp = false );
virtual void initClick( const vpImage<unsigned char>& I, const std::vector<vpPoint> &points3D_list,
const std::string &displayFile = "" );
virtual void initFromPoints( const vpImage<unsigned char>& I, const std::string& initFile );
virtual void initFromPoints( const vpImage<unsigned char>& I, const std::vector<vpImagePoint> &points2D_list, const std::vector<vpPoint> &points3D_list );
virtual void initFromPose(const vpImage<unsigned char>& I, const std::string &initFile);
virtual void initFromPose(const vpImage<unsigned char>& I, const vpHomogeneousMatrix &cMo);
virtual void initFromPose(const vpImage<unsigned char>& I, const vpPoseVector &cPo);
/*!
Load a config file to parameterise the behavior of the tracker.
Pure virtual method to adapt to each tracker.
\param configFile : the (xml) config file to parse
*/
virtual void loadConfigFile(const std::string& configFile)=0;
virtual void loadModel(const std::string& modelFile);
/*!
Reset the tracker.
*/
virtual void resetTracker() = 0;
void savePose(const std::string &filename);
/*!
Set the camera parameters.
\param camera : the new camera parameters
*/
virtual void setCameraParameters(const vpCameraParameters& camera) {this->cam = camera;}
/*!
Set if the covaraince matrix has to be computed.
\param flag : True if the covariance has to be computed, false otherwise
*/
virtual void setCovarianceComputation(const bool& flag) { computeCovariance = flag; }
/*!
Enable to display the features.
\param displayF : set it to true to display the features.
*/
void setDisplayFeatures(const bool displayF) {displayFeatures = displayF;}
/*!
Set the pose to be used in entry of the next call to the track() function.
This pose will be just used once.
\warning This function has to be called after the initialisation of the tracker.
\param I : image corresponding to the desired pose.
\param cdMo : Pose to affect.
*/
virtual void setPose(const vpImage<unsigned char> &I, const vpHomogeneousMatrix& cdMo) = 0;
/*!
Set the filename used to save the initial pose computed using the
initClick() method. It is also used to read a previous pose in the same method.
If the file is not set then, the initClick() method will create a .0.pos
file in the root directory. This directory is the path to the file given to
the method initClick() used to know the coordinates in the object frame.
\param filename : The new filename.
*/
inline void setPoseSavingFilename(const std::string& filename){
poseSavingFilename = filename;
}
/*!
Test the quality of the tracking.
\throw vpException if the test fail.
*/
virtual void testTracking() = 0;
/*!
Track the object in the given image
\param I : The current image.
*/
virtual void track(const vpImage<unsigned char>& I)=0;
protected:
void computeJTR(const vpMatrix& J, const vpColVector& R, vpMatrix& JTR);
#ifdef VISP_HAVE_COIN
virtual void extractGroup(SoVRMLGroup *sceneGraphVRML2, vpHomogeneousMatrix &transform, unsigned int &indexFace);
virtual void extractFaces(SoVRMLIndexedFaceSet* face_set, vpHomogeneousMatrix &transform, unsigned int &indexFace);
virtual void extractLines(SoVRMLIndexedLineSet* line_set);
virtual void extractCylinders(SoVRMLIndexedFaceSet* face_set, vpHomogeneousMatrix &transform);
#endif
vpPoint getGravityCenter(const std::vector<vpPoint>& _pts);
/*!
Add a cylinder to track from two points on the axis (defining the length of
the cylinder) and its radius.
\param p1 : First point on the axis.
\param p2 : Second point on the axis.
\param radius : Radius of the cylinder.
\param indexCylinder : Index of the cylinder.
*/
virtual void initCylinder(const vpPoint& p1, const vpPoint &p2, const double radius, const unsigned int indexCylinder=0)=0;
/*!
Add a face to track from its corners (in the object frame). This method is
called from the loadModel() one to add a face of the object to track.
The initialisation of the face depends on the primitive to track.
\param corners : The vector of corners representing the face.
\param indexFace : The index of the face.
*/
virtual void initFaceFromCorners(const std::vector<vpPoint>& corners, const unsigned int indexFace = -1)=0;
virtual void loadVRMLModel(const std::string& modelFile);
virtual void loadCAOModel(const std::string& modelFile);
};
#endif
|