Visual Servoing Platform  version 3.2.0
vpMbtEdgeKltXmlParser Class Reference

#include <vpMbtEdgeKltXmlParser.h>

+ Inheritance diagram for vpMbtEdgeKltXmlParser:

Public Member Functions

 vpMbtEdgeKltXmlParser ()
 
virtual ~vpMbtEdgeKltXmlParser ()
 
virtual void readMainClass (xmlDocPtr doc, xmlNodePtr node)
 
void writeMainClass (xmlNodePtr node)
 
Public Member Functions Inherited from vpMbtXmlParser
void getMe (vpMe &_ecm) const
 
void read_ecm (xmlDocPtr doc, xmlNodePtr node)
 
void read_sample (xmlDocPtr doc, xmlNodePtr node)
 
void read_sample_deprecated (xmlDocPtr doc, xmlNodePtr node)
 
void read_mask (xmlDocPtr doc, xmlNodePtr node)
 
void read_range (xmlDocPtr doc, xmlNodePtr node)
 
void read_contrast (xmlDocPtr doc, xmlNodePtr node)
 
void setMovingEdge (const vpMe &_ecm)
 
Public Member Functions Inherited from vpMbXmlParser
double getAngleAppear () const
 
double getAngleDisappear () const
 
void getCameraParameters (vpCameraParameters &_cam) const
 
double getFarClippingDistance () const
 
bool getFovClipping () const
 
bool getLodState () const
 
double getMinLineLengthThreshold () const
 
double getMinPolygonAreaThreshold () const
 
double getNearClippingDistance () const
 
bool hasFarClippingDistance () const
 
bool hasNearClippingDistance () const
 
void read_camera (xmlDocPtr doc, xmlNodePtr node)
 
void read_face (xmlDocPtr doc, xmlNodePtr node)
 
void read_lod (xmlDocPtr doc, xmlNodePtr node)
 
void setAngleAppear (const double &aappear)
 
void setAngleDisappear (const double &adisappear)
 
void setCameraParameters (const vpCameraParameters &_cam)
 
void setFarClippingDistance (const double &fclip)
 
void setNearClippingDistance (const double &nclip)
 
Public Member Functions Inherited from vpXmlParser
void parse (const std::string &filename)
 
void save (const std::string &filename, const bool append=false)
 
void setMap (const std::map< std::string, int > &_map)
 
void setMainTag (const std::string &tag)
 
Public Member Functions Inherited from vpMbtKltXmlParser
unsigned int getBlockSize () const
 
double getHarrisParam () const
 
unsigned int getMaskBorder () const
 
unsigned int getMaxFeatures () const
 
double getMinDistance () const
 
unsigned int getPyramidLevels () const
 
double getQuality () const
 
unsigned int getWindowSize () const
 
void read_klt (xmlDocPtr doc, xmlNodePtr node)
 
void setBlockSize (const unsigned int &bs)
 
void setHarrisParam (const double &hp)
 
void setMaskBorder (const unsigned int &mb)
 
void setMaxFeatures (const unsigned int &mF)
 
void setMinDistance (const double &mD)
 
void setPyramidLevels (const unsigned int &pL)
 
void setQuality (const double &q)
 
void setWindowSize (const unsigned int &w)
 

Static Public Member Functions

Static Public Member Functions Inherited from vpXmlParser
static void cleanup ()
 

Protected Types

enum  dataToParseMbtEdgeKlt {
  camera, face, klt, ecm,
  lod
}
 
enum  dataToParseMb {
  ecm = vpMbXmlParser::last, mask, size, nb_mask,
  range, tracking, contrast, edge_threshold,
  mu1, mu2, sample, step,
  last
}
 
enum  dataToParseMbKlt {
  klt = vpMbXmlParser::last, mask_border, max_features, window_size,
  quality, min_distance, harris, size_block,
  pyramid_lvl, last
}
 

Protected Member Functions

void init ()
 

Protected Attributes

vpMe m_ecm
 
vpCameraParameters cam
 
double angleAppear
 
double angleDisappear
 
bool hasNearClipping
 
double nearClipping
 
bool hasFarClipping
 
double farClipping
 
bool fovClipping
 
bool useLod
 
double minLineLengthThreshold
 
double minPolygonAreaThreshold
 
unsigned int maskBorder
 
unsigned int maxFeatures
 
unsigned int winSize
 
double qualityValue
 
double minDist
 
double harrisParam
 
unsigned int blockSize
 
unsigned int pyramidLevels
 

Protected Member Functions Inherited from vpXmlParser

bool xmlReadBoolChild (xmlDocPtr doc, xmlNodePtr node)
 
char * xmlReadCharChild (xmlDocPtr doc, xmlNodePtr node)
 
double xmlReadDoubleChild (xmlDocPtr doc, xmlNodePtr node)
 
float xmlReadFloatChild (xmlDocPtr doc, xmlNodePtr node)
 
int xmlReadIntChild (xmlDocPtr doc, xmlNodePtr node)
 
std::string xmlReadStringChild (xmlDocPtr doc, xmlNodePtr node)
 
unsigned int xmlReadUnsignedIntChild (xmlDocPtr doc, xmlNodePtr node)
 
void xmlWriteBoolChild (xmlNodePtr node, const char *label, const bool value)
 
void xmlWriteCharChild (xmlNodePtr node, const char *label, const char *value)
 
void xmlWriteDoubleChild (xmlNodePtr node, const char *label, const double value)
 
void xmlWriteFloatChild (xmlNodePtr node, const char *label, const float value)
 
void xmlWriteIntChild (xmlNodePtr node, const char *label, const int value)
 
void xmlWriteStringChild (xmlNodePtr node, const char *label, const std::string &value)
 
void xmlWriteUnsignedIntChild (xmlNodePtr node, const char *label, const unsigned int value)
 
std::map< std::string, int > nodeMap
 
std::string main_tag
 

Detailed Description

Parse an Xml file to extract configuration parameters of a mbtConfig object.

Data parser for the model based tracker.

Definition at line 65 of file vpMbtEdgeKltXmlParser.h.

Member Enumeration Documentation

◆ dataToParseMb

enum vpMbtXmlParser::dataToParseMb
protectedinherited
Enumerator
ecm 
mask 
size 
nb_mask 
range 
tracking 
contrast 
edge_threshold 
mu1 
mu2 
sample 
step 
last 

Definition at line 70 of file vpMbtXmlParser.h.

◆ dataToParseMbKlt

enum vpMbtKltXmlParser::dataToParseMbKlt
protectedinherited
Enumerator
klt 
mask_border 
max_features 
window_size 
quality 
min_distance 
harris 
size_block 
pyramid_lvl 
last 

Definition at line 82 of file vpMbtKltXmlParser.h.

◆ dataToParseMbtEdgeKlt

Enumerator
camera 
face 
klt 
ecm 
lod 

Definition at line 68 of file vpMbtEdgeKltXmlParser.h.

Constructor & Destructor Documentation

◆ vpMbtEdgeKltXmlParser()

vpMbtEdgeKltXmlParser::vpMbtEdgeKltXmlParser ( )

Default constructor.

Definition at line 53 of file vpMbtEdgeKltXmlParser.cpp.

◆ ~vpMbtEdgeKltXmlParser()

vpMbtEdgeKltXmlParser::~vpMbtEdgeKltXmlParser ( )
virtual

Default destructor.

Definition at line 58 of file vpMbtEdgeKltXmlParser.cpp.

Member Function Documentation

◆ cleanup()

static void vpXmlParser::cleanup ( )
inlinestaticinherited

As stated in http://xmlsoft.org/html/libxml-parser.html#xmlCleanupParser to clean up memory allocated by the xml2 library itself, the user should call xmlCleanupParser() only when the process has finished using the xml2 library. In case of doubt abstain from calling this function or do it just before calling exit() to avoid leak reports from valgrind ! That's why in ViSP the destructor doesn't call xmlCleanupParser(). Rather we provide the static function vpXmlParser::cleanup() that calls xmlCleanupParser() that could be called just before exit().

Examples
mbtEdgeKltMultiTracking.cpp, mbtEdgeKltTracking.cpp, mbtEdgeMultiTracking.cpp, mbtEdgeTracking.cpp, mbtGenericTracking.cpp, mbtGenericTracking2.cpp, mbtGenericTrackingDepth.cpp, mbtGenericTrackingDepthOnly.cpp, mbtKltMultiTracking.cpp, mbtKltTracking.cpp, testGenericTracker.cpp, testGenericTrackerDepth.cpp, testXmlParser.cpp, tutorial-detection-object-mbt-deprecated.cpp, tutorial-detection-object-mbt.cpp, tutorial-detection-object-mbt2-deprecated.cpp, tutorial-detection-object-mbt2.cpp, tutorial-mb-edge-tracker.cpp, tutorial-mb-generic-tracker-full.cpp, tutorial-mb-hybrid-tracker.cpp, tutorial-mb-klt-tracker.cpp, and tutorial-mb-tracker-full.cpp.

Definition at line 309 of file vpXmlParser.h.

◆ getAngleAppear()

double vpMbXmlParser::getAngleAppear ( ) const
inlineinherited

Get the angle to determine if a face appeared.

Returns
angleAppear

Definition at line 123 of file vpMbXmlParser.h.

◆ getAngleDisappear()

double vpMbXmlParser::getAngleDisappear ( ) const
inlineinherited

Get the angle to determine if a face disappeared.

Returns
angleDisappear

Definition at line 130 of file vpMbXmlParser.h.

◆ getBlockSize()

unsigned int vpMbtKltXmlParser::getBlockSize ( ) const
inlineinherited

Get the size of a block.

Returns
blockSize

Definition at line 106 of file vpMbtKltXmlParser.h.

◆ getCameraParameters()

void vpMbXmlParser::getCameraParameters ( vpCameraParameters _cam) const
inlineinherited

Definition at line 132 of file vpMbXmlParser.h.

◆ getFarClippingDistance()

double vpMbXmlParser::getFarClippingDistance ( ) const
inlineinherited

Get the far clipping distance.

Returns
farClipping

Definition at line 139 of file vpMbXmlParser.h.

◆ getFovClipping()

bool vpMbXmlParser::getFovClipping ( ) const
inlineinherited

Use FOV clipping

Returns
True if yes, False otherwise.

Definition at line 146 of file vpMbXmlParser.h.

◆ getHarrisParam()

double vpMbtKltXmlParser::getHarrisParam ( ) const
inlineinherited

Get the Harris free parameter.

Returns
harrisParam

Definition at line 113 of file vpMbtKltXmlParser.h.

◆ getLodState()

bool vpMbXmlParser::getLodState ( ) const
inlineinherited

Get the state of LOD setting.

Returns
True if LOD is enabled, false otherwise.

Definition at line 153 of file vpMbXmlParser.h.

◆ getMaskBorder()

unsigned int vpMbtKltXmlParser::getMaskBorder ( ) const
inlineinherited

Get the Border of the mask.

Returns
faceBorder

Definition at line 120 of file vpMbtKltXmlParser.h.

◆ getMaxFeatures()

unsigned int vpMbtKltXmlParser::getMaxFeatures ( ) const
inlineinherited

Get the maximum number of features for the KLT.

Returns
maxFeatures

Definition at line 127 of file vpMbtKltXmlParser.h.

◆ getMe()

void vpMbtXmlParser::getMe ( vpMe _ecm) const
inlineinherited

Definition at line 95 of file vpMbtXmlParser.h.

◆ getMinDistance()

double vpMbtKltXmlParser::getMinDistance ( ) const
inlineinherited

Get the minimum distance between KLT points.

Returns
minDist

Definition at line 134 of file vpMbtKltXmlParser.h.

◆ getMinLineLengthThreshold()

double vpMbXmlParser::getMinLineLengthThreshold ( ) const
inlineinherited

Get the minimum line length to track a segment when LOD is enabled.

Returns
The minimum line length.

Definition at line 160 of file vpMbXmlParser.h.

◆ getMinPolygonAreaThreshold()

double vpMbXmlParser::getMinPolygonAreaThreshold ( ) const
inlineinherited

Get the minimum polygon area to track a face when LOD is enabled.

Returns
The minimum polygon area.

Definition at line 167 of file vpMbXmlParser.h.

◆ getNearClippingDistance()

double vpMbXmlParser::getNearClippingDistance ( ) const
inlineinherited

Get the near clipping distance.

Returns
nearClipping

Definition at line 174 of file vpMbXmlParser.h.

◆ getPyramidLevels()

unsigned int vpMbtKltXmlParser::getPyramidLevels ( ) const
inlineinherited

Get the number of pyramid levels

Returns
pyramidLevels

Definition at line 141 of file vpMbtKltXmlParser.h.

◆ getQuality()

double vpMbtKltXmlParser::getQuality ( ) const
inlineinherited

Get the quality of the KLT.

Returns
quality

Definition at line 148 of file vpMbtKltXmlParser.h.

◆ getWindowSize()

unsigned int vpMbtKltXmlParser::getWindowSize ( ) const
inlineinherited

Get the size of the window used in the KLT tracker.

Returns
winSize

Definition at line 155 of file vpMbtKltXmlParser.h.

◆ hasFarClippingDistance()

bool vpMbXmlParser::hasFarClippingDistance ( ) const
inlineinherited

Has Far clipping been specified?

Returns
True if yes, False otherwise.

Definition at line 181 of file vpMbXmlParser.h.

◆ hasNearClippingDistance()

bool vpMbXmlParser::hasNearClippingDistance ( ) const
inlineinherited

Has Near clipping been specified?

Returns
True if yes, False otherwise.

Definition at line 188 of file vpMbXmlParser.h.

◆ init()

void vpMbtEdgeKltXmlParser::init ( void  )
protected

Initialise internal variables (including the map).

Definition at line 63 of file vpMbtEdgeKltXmlParser.cpp.

◆ parse()

void vpXmlParser::parse ( const std::string &  filename)
inherited

parse the document. The data in the file are stored in the attributes of the child class. This method calls the readMainClass method which has to be implemented for every child class depending on the content to parse.

Parameters
filename: name of the file to parse

Definition at line 420 of file vpXmlParser.cpp.

Referenced by vpMbDepthDenseTracker::loadConfigFile(), vpMbDepthNormalTracker::loadConfigFile(), and vpMbTracker::loadConfigFile().

◆ read_camera()

void vpMbXmlParser::read_camera ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read camera information.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the camera information.

Definition at line 168 of file vpMbXmlParser.cpp.

◆ read_contrast()

void vpMbtXmlParser::read_contrast ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read the contrast information from the xml file.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the contrast information.

Definition at line 441 of file vpMbtXmlParser.cpp.

◆ read_ecm()

void vpMbtXmlParser::read_ecm ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read ecm information.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the ecm information.

Definition at line 177 of file vpMbtXmlParser.cpp.

◆ read_face()

void vpMbXmlParser::read_face ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read face information.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the camera information.

Definition at line 242 of file vpMbXmlParser.cpp.

◆ read_klt()

void vpMbtKltXmlParser::read_klt ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read klt information.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the camera information.

Definition at line 174 of file vpMbtKltXmlParser.cpp.

◆ read_lod()

◆ read_mask()

void vpMbtXmlParser::read_mask ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read mask information for the vpMeSite.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the mask information.

Definition at line 342 of file vpMbtXmlParser.cpp.

◆ read_range()

void vpMbtXmlParser::read_range ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read range information for the vpMeSite.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the range information.

Definition at line 400 of file vpMbtXmlParser.cpp.

◆ read_sample()

void vpMbtXmlParser::read_sample ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read sample information.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the sample information.

Definition at line 242 of file vpMbtXmlParser.cpp.

◆ read_sample_deprecated()

void vpMbtXmlParser::read_sample_deprecated ( xmlDocPtr  doc,
xmlNodePtr  node 
)
inherited

Read sample information.

Exceptions
vpException::fatalErrorif there was an unexpected number of data.
Parameters
doc: Pointer to the document.
node: Pointer to the node of the sample information.

Definition at line 284 of file vpMbtXmlParser.cpp.

◆ readMainClass()

void vpMbtEdgeKltXmlParser::readMainClass ( xmlDocPtr  doc,
xmlNodePtr  node 
)
virtual

Read the parameters of the class from the file given by its document pointer and by its root node.

Parameters
doc: Document to parse.
node: Root node.

Reimplemented from vpMbtKltXmlParser.

Definition at line 92 of file vpMbtEdgeKltXmlParser.cpp.

◆ save()

void vpXmlParser::save ( const std::string &  filename,
const bool  append = false 
)
inherited

Save the content of the class in the file given in parameters. The data of the class are in the child class. This method calls the write_main_class method which has to be implemented for every class depending on the data to save.

Parameters
filename: the name of the file used to record the data
append: if true and if the file exists, the data will be added to the data already in the file

Definition at line 452 of file vpXmlParser.cpp.

◆ setAngleAppear()

void vpMbXmlParser::setAngleAppear ( const double &  aappear)
inlineinherited

Set the angle to determine if a face appeared.

Parameters
aappear: New angleAppear

Definition at line 200 of file vpMbXmlParser.h.

◆ setAngleDisappear()

void vpMbXmlParser::setAngleDisappear ( const double &  adisappear)
inlineinherited

Set the angle to determine if a face disappeared.

Parameters
adisappear: New angleDisappear

Definition at line 207 of file vpMbXmlParser.h.

◆ setBlockSize()

void vpMbtKltXmlParser::setBlockSize ( const unsigned int &  bs)
inlineinherited

Set the size of a block.

Parameters
bs: New blockSize

Definition at line 165 of file vpMbtKltXmlParser.h.

◆ setCameraParameters()

void vpMbXmlParser::setCameraParameters ( const vpCameraParameters _cam)
inlineinherited

Definition at line 209 of file vpMbXmlParser.h.

◆ setFarClippingDistance()

void vpMbXmlParser::setFarClippingDistance ( const double &  fclip)
inlineinherited

Set the far clipping distance.

Parameters
fclip: New farClipping

Definition at line 216 of file vpMbXmlParser.h.

◆ setHarrisParam()

void vpMbtKltXmlParser::setHarrisParam ( const double &  hp)
inlineinherited

Set the Harris free parameter.

Parameters
hp: New harrisParam

Definition at line 172 of file vpMbtKltXmlParser.h.

◆ setMainTag()

void vpXmlParser::setMainTag ( const std::string &  tag)
inlineinherited

set the name of the main tag

The main tag corresponds to the name of the root node

Parameters
tag: name of the root node of the document

Definition at line 294 of file vpXmlParser.h.

◆ setMap()

void vpXmlParser::setMap ( const std::map< std::string, int > &  _map)
inlineinherited

Set the map describing the data to parse. This map stores the name of each node and an associated key used to simplify the parsing of the file.

If the following file want to be parsed:

<config>
<range>5</range>
<step>7</step>
<size_filter>3</size_filter>
</config>

The following map has to be declared:

std::map dataToParse;
dataToParse["config"] = 0;
dataToParse["range"] = 1;
dataToParse["step"] = 2;
dataToParse["size_filter"] = 3;

Or, you can use keyzord instead of number as key but it implies to declare in the child class an enumeration type of the name. For example:

typedef enum{
config,
size_filter} data_enum;
std::map dataToParse;
dataToParse["config"] = config;
dataToParse["range"] = range;
dataToParse["step"] = step;
dataToParse["size_filter"] = size_filter;
Parameters
_map: the map describing the data to parse

Definition at line 285 of file vpXmlParser.h.

◆ setMaskBorder()

void vpMbtKltXmlParser::setMaskBorder ( const unsigned int &  mb)
inlineinherited

Set the Border of the mask.

Parameters
mb= new maskBorder

Definition at line 179 of file vpMbtKltXmlParser.h.

◆ setMaxFeatures()

void vpMbtKltXmlParser::setMaxFeatures ( const unsigned int &  mF)
inlineinherited

Set the maximum number of features for the KLT.

Parameters
mF: New maxFeatures

Definition at line 186 of file vpMbtKltXmlParser.h.

◆ setMinDistance()

void vpMbtKltXmlParser::setMinDistance ( const double &  mD)
inlineinherited

Set the minimum distance between KLT points.

Parameters
mD: New minDist

Definition at line 193 of file vpMbtKltXmlParser.h.

◆ setMovingEdge()

void vpMbtXmlParser::setMovingEdge ( const vpMe _ecm)
inlineinherited

Definition at line 105 of file vpMbtXmlParser.h.

◆ setNearClippingDistance()

void vpMbXmlParser::setNearClippingDistance ( const double &  nclip)
inlineinherited

Set the near clipping distance.

Parameters
nclip: New nearClipping

Definition at line 223 of file vpMbXmlParser.h.

◆ setPyramidLevels()

void vpMbtKltXmlParser::setPyramidLevels ( const unsigned int &  pL)
inlineinherited

Set the number of pyramid levels

Parameters
pL: New pyramidLevels

Definition at line 200 of file vpMbtKltXmlParser.h.

◆ setQuality()

void vpMbtKltXmlParser::setQuality ( const double &  q)
inlineinherited

Set the quality of the KLT.

Parameters
q: New quality

Definition at line 207 of file vpMbtKltXmlParser.h.

◆ setWindowSize()

void vpMbtKltXmlParser::setWindowSize ( const unsigned int &  w)
inlineinherited

Set the size of the window used in the KLT tracker.

Parameters
w: New winSize

Definition at line 214 of file vpMbtKltXmlParser.h.

◆ writeMainClass()

void vpMbtEdgeKltXmlParser::writeMainClass ( xmlNodePtr  node)
virtual

Write info to file.

Warning
Useless, so not yet implemented => Throw exception.

Implements vpXmlParser.

Definition at line 80 of file vpMbtEdgeKltXmlParser.cpp.

◆ xmlReadBoolChild()

bool vpXmlParser::xmlReadBoolChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

read a boolean

Warning
throw a vpException::ioError if the value cannot be parsed to a bool
Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
the bool value in the node

Definition at line 281 of file vpXmlParser.cpp.

◆ xmlReadCharChild()

char * vpXmlParser::xmlReadCharChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

Read an array of character.

Warning
The array of characters is allocated and must be explicitly freed to avoid memory leak.
Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
pointer to an allocated array of character.

Definition at line 99 of file vpXmlParser.cpp.

Referenced by vpMbtXmlGenericParser::read_projection_error().

◆ xmlReadDoubleChild()

double vpXmlParser::xmlReadDoubleChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

read a double

Warning
throw a vpException::ioError if the value cannot be parsed to a double
Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
the double value in the node

Definition at line 211 of file vpXmlParser.cpp.

Referenced by vpMbXmlParser::read_lod(), and vpMbtXmlGenericParser::read_lod().

◆ xmlReadFloatChild()

float vpXmlParser::xmlReadFloatChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

read a float

Warning
throw a vpException::ioError if the value cannot be parsed to a float
Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
the float value in the node

Definition at line 244 of file vpXmlParser.cpp.

◆ xmlReadIntChild()

int vpXmlParser::xmlReadIntChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

read an int

Warning
throw a vpException::ioError if the value cannot be parsed to an integer
Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
the integer value in the node

Definition at line 143 of file vpXmlParser.cpp.

Referenced by vpMbXmlParser::read_lod(), vpMbtXmlGenericParser::read_lod(), and vpMbtXmlGenericParser::read_projection_error().

◆ xmlReadStringChild()

std::string vpXmlParser::xmlReadStringChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

Read an array of character.

Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
std::string representing the value.

Definition at line 119 of file vpXmlParser.cpp.

◆ xmlReadUnsignedIntChild()

unsigned int vpXmlParser::xmlReadUnsignedIntChild ( xmlDocPtr  doc,
xmlNodePtr  node 
)
protectedinherited

read an int

Warning
throw a vpException::ioError if the value cannot be parsed to an unsigned integer
Parameters
doc: The main xml document
node: a pointer to the node to read value
Returns
the unsigned integer value in the node

Definition at line 177 of file vpXmlParser.cpp.

◆ xmlWriteBoolChild()

void vpXmlParser::xmlWriteBoolChild ( xmlNodePtr  node,
const char *  label,
const bool  value 
)
protectedinherited

write a bool.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: boolean to write (true or false)

Definition at line 397 of file vpXmlParser.cpp.

◆ xmlWriteCharChild()

void vpXmlParser::xmlWriteCharChild ( xmlNodePtr  node,
const char *  label,
const char *  value 
)
protectedinherited

write an array of character.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: pointer to the array of character to write

Definition at line 305 of file vpXmlParser.cpp.

◆ xmlWriteDoubleChild()

void vpXmlParser::xmlWriteDoubleChild ( xmlNodePtr  node,
const char *  label,
const double  value 
)
protectedinherited

write a double.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: double to write

Definition at line 365 of file vpXmlParser.cpp.

◆ xmlWriteFloatChild()

void vpXmlParser::xmlWriteFloatChild ( xmlNodePtr  node,
const char *  label,
const float  value 
)
protectedinherited

write a float.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: float to write

Definition at line 381 of file vpXmlParser.cpp.

◆ xmlWriteIntChild()

void vpXmlParser::xmlWriteIntChild ( xmlNodePtr  node,
const char *  label,
const int  value 
)
protectedinherited

write an integer.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: integer to write

Definition at line 333 of file vpXmlParser.cpp.

◆ xmlWriteStringChild()

void vpXmlParser::xmlWriteStringChild ( xmlNodePtr  node,
const char *  label,
const std::string &  value 
)
protectedinherited

write an array of character.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: std::string to write;

Definition at line 319 of file vpXmlParser.cpp.

◆ xmlWriteUnsignedIntChild()

void vpXmlParser::xmlWriteUnsignedIntChild ( xmlNodePtr  node,
const char *  label,
const unsigned int  value 
)
protectedinherited

write an unsigned integer.

Parameters
node: a pointer to the node to read value
label: label (name of the data) of the node
value: unsigned integer to write

Definition at line 349 of file vpXmlParser.cpp.

Member Data Documentation

◆ angleAppear

double vpMbXmlParser::angleAppear
protectedinherited

Angle to determine if a face appeared.

Definition at line 70 of file vpMbXmlParser.h.

◆ angleDisappear

double vpMbXmlParser::angleDisappear
protectedinherited

Angle to determine if a face disappeared.

Definition at line 72 of file vpMbXmlParser.h.

◆ blockSize

unsigned int vpMbtKltXmlParser::blockSize
protectedinherited

Block size.

Definition at line 78 of file vpMbtKltXmlParser.h.

◆ cam

vpCameraParameters vpMbXmlParser::cam
protectedinherited

Camera parameters.

Definition at line 68 of file vpMbXmlParser.h.

◆ farClipping

double vpMbXmlParser::farClipping
protectedinherited

Near clipping distance.

Definition at line 80 of file vpMbXmlParser.h.

◆ fovClipping

bool vpMbXmlParser::fovClipping
protectedinherited

Fov Clipping.

Definition at line 82 of file vpMbXmlParser.h.

◆ harrisParam

double vpMbtKltXmlParser::harrisParam
protectedinherited

Harris free parameters.

Definition at line 76 of file vpMbtKltXmlParser.h.

◆ hasFarClipping

bool vpMbXmlParser::hasFarClipping
protectedinherited

Is far clipping distance specified?

Definition at line 78 of file vpMbXmlParser.h.

◆ hasNearClipping

bool vpMbXmlParser::hasNearClipping
protectedinherited

Is near clipping distance specified?

Definition at line 74 of file vpMbXmlParser.h.

◆ m_ecm

vpMe vpMbtXmlParser::m_ecm
protectedinherited

Moving edges parameters.

Definition at line 87 of file vpMbtXmlParser.h.

◆ main_tag

std::string vpXmlParser::main_tag
protectedinherited

The name of the main tag for the file to parse

Definition at line 230 of file vpXmlParser.h.

◆ maskBorder

unsigned int vpMbtKltXmlParser::maskBorder
protectedinherited

Border of the mask used on Klt points.

Definition at line 66 of file vpMbtKltXmlParser.h.

◆ maxFeatures

unsigned int vpMbtKltXmlParser::maxFeatures
protectedinherited

Maximum of Klt features.

Definition at line 68 of file vpMbtKltXmlParser.h.

◆ minDist

double vpMbtKltXmlParser::minDist
protectedinherited

Minimum distance between klt points.

Definition at line 74 of file vpMbtKltXmlParser.h.

◆ minLineLengthThreshold

double vpMbXmlParser::minLineLengthThreshold
protectedinherited

Minimum line length to track a segment when LOD is enabled.

Definition at line 86 of file vpMbXmlParser.h.

Referenced by vpMbXmlParser::read_lod().

◆ minPolygonAreaThreshold

double vpMbXmlParser::minPolygonAreaThreshold
protectedinherited

Minimum polygon area to track a face when LOD is enabled.

Definition at line 88 of file vpMbXmlParser.h.

Referenced by vpMbXmlParser::read_lod().

◆ nearClipping

double vpMbXmlParser::nearClipping
protectedinherited

Near clipping distance.

Definition at line 76 of file vpMbXmlParser.h.

◆ nodeMap

std::map<std::string, int> vpXmlParser::nodeMap
protectedinherited

The map describing the data to parse

Definition at line 225 of file vpXmlParser.h.

Referenced by vpMbXmlParser::read_lod(), vpMbtXmlGenericParser::read_lod(), and vpMbtXmlGenericParser::read_projection_error().

◆ pyramidLevels

unsigned int vpMbtKltXmlParser::pyramidLevels
protectedinherited

Number of pyramid levels.

Definition at line 80 of file vpMbtKltXmlParser.h.

◆ qualityValue

double vpMbtKltXmlParser::qualityValue
protectedinherited

Quality of the Klt points.

Definition at line 72 of file vpMbtKltXmlParser.h.

◆ useLod

bool vpMbXmlParser::useLod
protectedinherited

If true, the LOD is enabled, otherwise it is not.

Definition at line 84 of file vpMbXmlParser.h.

Referenced by vpMbXmlParser::read_lod().

◆ winSize

unsigned int vpMbtKltXmlParser::winSize
protectedinherited

Windows size.

Definition at line 70 of file vpMbtKltXmlParser.h.

vpMbtXmlParser::range
Definition: vpMbtXmlParser.h:75
vpMbtXmlParser::step
Definition: vpMbtXmlParser.h:82