ViSP
2.9.0
|
#include <vpMbtEdgeKltXmlParser.h>
Public Member Functions | |
vpMbtEdgeKltXmlParser () | |
virtual | ~vpMbtEdgeKltXmlParser () |
void | parse (const char *filename) |
virtual void | readMainClass (xmlDocPtr doc, xmlNodePtr node) |
void | writeMainClass (xmlNodePtr node) |
void | getMe (vpMe &_ecm) const |
void | parse (const std::string &filename) |
void | read_ecm (xmlDocPtr doc, xmlNodePtr node) |
void | read_sample (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) |
double | getAngleAppear () const |
double | getAngleDisappear () const |
void | getCameraParameters (vpCameraParameters &_cam) const |
double | getFarClippingDistance () const |
bool | getFovClipping () 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 | setAngleAppear (const double &aappear) |
void | setAngleDisappear (const double &adisappear) |
void | setCameraParameters (const vpCameraParameters &_cam) |
void | setFarClippingDistance (const double &fclip) |
void | setNearClippingDistance (const double &nclip) |
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) |
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 void | cleanup () |
Protected Types | |
enum | dataToParseMbtEdgeKlt { camera, face, klt, ecm, sample } |
enum | dataToParseMb { ecm = vpMbXmlParser::last, mask, size, nb_mask, range, tracking, contrast, edge_threshold, mu1, mu2, sample, step, nb_sample, 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 () |
std::string | xmlReadStringChild (xmlDocPtr doc, xmlNodePtr node) |
char * | xmlReadCharChild (xmlDocPtr doc, xmlNodePtr node) |
int | xmlReadIntChild (xmlDocPtr doc, xmlNodePtr node) |
unsigned int | xmlReadUnsignedIntChild (xmlDocPtr doc, xmlNodePtr node) |
double | xmlReadDoubleChild (xmlDocPtr doc, xmlNodePtr node) |
void | xmlWriteStringChild (xmlNodePtr node, const char *label, const std::string &value) |
void | xmlWriteCharChild (xmlNodePtr node, const char *label, const char *value) |
void | xmlWriteIntChild (xmlNodePtr node, const char *label, const int value) |
void | xmlWriteUnsignedIntChild (xmlNodePtr node, const char *label, const unsigned int value) |
void | xmlWriteDoubleChild (xmlNodePtr node, const char *label, const double value) |
Protected Attributes | |
vpMe | m_ecm |
vpCameraParameters | cam |
double | angleAppear |
double | angleDisappear |
bool | hasNearClipping |
double | nearClipping |
bool | hasFarClipping |
double | farClipping |
bool | fovClipping |
std::map< std::string, int > | nodeMap |
std::string | main_tag |
unsigned int | maskBorder |
unsigned int | maxFeatures |
unsigned int | winSize |
double | qualityValue |
double | minDist |
double | harrisParam |
unsigned int | blockSize |
unsigned int | pyramidLevels |
Parse an Xml file to extract configuration parameters of a mbtConfig object.
Data parser for the model based tracker.
Definition at line 67 of file vpMbtEdgeKltXmlParser.h.
|
protectedinherited |
Enumerator | |
---|---|
ecm | |
mask | |
size | |
nb_mask | |
range | |
tracking | |
contrast | |
edge_threshold | |
mu1 | |
mu2 | |
sample | |
step | |
nb_sample | |
last |
Definition at line 76 of file vpMbtXmlParser.h.
|
protectedinherited |
Enumerator | |
---|---|
klt | |
mask_border | |
max_features | |
window_size | |
quality | |
min_distance | |
harris | |
size_block | |
pyramid_lvl | |
last |
Definition at line 85 of file vpMbtKltXmlParser.h.
|
protected |
Enumerator | |
---|---|
camera | |
face | |
klt | |
ecm | |
sample |
Definition at line 70 of file vpMbtEdgeKltXmlParser.h.
vpMbtEdgeKltXmlParser::vpMbtEdgeKltXmlParser | ( | ) |
|
virtual |
Default destructor.
Definition at line 66 of file vpMbtEdgeKltXmlParser.cpp.
|
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().
Definition at line 220 of file vpXmlParser.h.
|
inlineinherited |
Get the angle to determine if a face appeared.
Definition at line 116 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Get the angle to determine if a face disappeared.
Definition at line 123 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Get the size of a block.
Definition at line 109 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Definition at line 125 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Get the far clipping distance.
Definition at line 132 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Use FOV clipping
Definition at line 139 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Get the Harris free parameter.
Definition at line 116 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Get the Border of the mask.
Definition at line 123 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Get the maximum number of features for the KLT.
Definition at line 130 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Definition at line 99 of file vpMbtXmlParser.h.
Referenced by vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Get the minimum distance between KLT points.
Definition at line 137 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Get the near clipping distance.
Definition at line 146 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Get the number of pyramid levels
Definition at line 144 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Get the quality of the KLT.
Definition at line 151 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Get the size of the window used in the KLT tracker.
Definition at line 158 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Has Far clipping been specified?
Definition at line 153 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Has Near clipping been specified?
Definition at line 160 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
protected |
Initialise internal variables (including the map).
Definition at line 74 of file vpMbtEdgeKltXmlParser.cpp.
References camera, ecm, face, vpMbtXmlParser::init(), vpMbtKltXmlParser::init(), klt, vpXmlParser::nodeMap, and sample.
Referenced by vpMbtEdgeKltXmlParser().
void vpMbtEdgeKltXmlParser::parse | ( | const char * | filename | ) |
Parse the file in parameters. This method is deprecated, use parse() instead.
filename | : File to parse. |
Definition at line 93 of file vpMbtEdgeKltXmlParser.cpp.
References vpXmlParser::parse().
Referenced by vpMbEdgeKltTracker::loadConfigFile().
|
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.
filename | : name of the file to parse |
Definition at line 343 of file vpXmlParser.cpp.
References vpException::ioError, vpXmlParser::readMainClass(), and vpERROR_TRACE.
Referenced by parse(), vpMbtXmlParser::parse(), vpMbtKltXmlParser::parse(), and vpMbXmlParser::parse().
|
inherited |
Read camera information.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the camera information. |
Definition at line 178 of file vpMbXmlParser.cpp.
References vpMbXmlParser::cam, vpCameraParameters::get_px(), vpCameraParameters::get_py(), vpCameraParameters::get_u0(), vpCameraParameters::get_v0(), vpCameraParameters::initPersProjWithoutDistortion(), vpXmlParser::nodeMap, vpMbXmlParser::px, vpMbXmlParser::py, vpMbXmlParser::u0, vpMbXmlParser::v0, and vpXmlParser::xmlReadDoubleChild().
Referenced by readMainClass(), vpMbtXmlParser::readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbXmlParser::readMainClass().
|
inherited |
Read the contrast information from the xml file.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the contrast information. |
Definition at line 405 of file vpMbtXmlParser.cpp.
References vpMbtXmlParser::edge_threshold, vpMe::getMu1(), vpMe::getMu2(), vpMe::getThreshold(), vpMbtXmlParser::m_ecm, vpMbtXmlParser::mu1, vpMbtXmlParser::mu2, vpXmlParser::nodeMap, vpMe::setMu1(), vpMe::setMu2(), vpMe::setThreshold(), and vpXmlParser::xmlReadDoubleChild().
Referenced by vpMbtXmlParser::read_ecm().
|
inherited |
Read ecm information.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the ecm information. |
Definition at line 201 of file vpMbtXmlParser.cpp.
References vpMbtXmlParser::contrast, vpMe::getMaskNumber(), vpMe::getMaskSize(), vpMe::getMu1(), vpMe::getMu2(), vpMe::getRange(), vpMe::getThreshold(), vpMbtXmlParser::m_ecm, vpMbtXmlParser::mask, vpXmlParser::nodeMap, vpMbtXmlParser::range, vpMbtXmlParser::read_contrast(), vpMbtXmlParser::read_mask(), and vpMbtXmlParser::read_range().
Referenced by readMainClass(), and vpMbtXmlParser::readMainClass().
|
inherited |
Read face information.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the camera information. |
Definition at line 252 of file vpMbXmlParser.cpp.
References vpMbXmlParser::angle_appear, vpMbXmlParser::angle_disappear, vpMbXmlParser::angleAppear, vpMbXmlParser::angleDisappear, vpMbXmlParser::far_clipping, vpMbXmlParser::farClipping, vpMbXmlParser::fov_clipping, vpMbXmlParser::fovClipping, vpMbXmlParser::hasFarClipping, vpMbXmlParser::hasNearClipping, vpMbXmlParser::near_clipping, vpMbXmlParser::nearClipping, vpXmlParser::nodeMap, vpXmlParser::xmlReadDoubleChild(), and vpXmlParser::xmlReadIntChild().
Referenced by readMainClass(), vpMbtXmlParser::readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbXmlParser::readMainClass().
|
inherited |
Read klt information.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the camera information. |
Definition at line 186 of file vpMbtKltXmlParser.cpp.
References vpMbtKltXmlParser::blockSize, vpMbtKltXmlParser::harris, vpMbtKltXmlParser::harrisParam, vpMbtKltXmlParser::mask_border, vpMbtKltXmlParser::maskBorder, vpMbtKltXmlParser::max_features, vpMbtKltXmlParser::maxFeatures, vpMbtKltXmlParser::min_distance, vpMbtKltXmlParser::minDist, vpXmlParser::nodeMap, vpMbtKltXmlParser::pyramid_lvl, vpMbtKltXmlParser::pyramidLevels, vpMbtKltXmlParser::quality, vpMbtKltXmlParser::qualityValue, vpMbtKltXmlParser::size_block, vpMbtKltXmlParser::window_size, vpMbtKltXmlParser::winSize, vpXmlParser::xmlReadDoubleChild(), and vpXmlParser::xmlReadUnsignedIntChild().
Referenced by readMainClass(), and vpMbtKltXmlParser::readMainClass().
|
inherited |
Read mask information for the vpMeSite.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the mask information. |
Definition at line 310 of file vpMbtXmlParser.cpp.
References vpMe::getMaskNumber(), vpMe::getMaskSize(), vpMbtXmlParser::m_ecm, vpMbtXmlParser::nb_mask, vpXmlParser::nodeMap, vpMe::setMaskNumber(), vpMe::setMaskSize(), vpMbtXmlParser::size, and vpXmlParser::xmlReadUnsignedIntChild().
Referenced by vpMbtXmlParser::read_ecm().
|
inherited |
Read range information for the vpMeSite.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the range information. |
Definition at line 363 of file vpMbtXmlParser.cpp.
References vpMe::getRange(), vpMbtXmlParser::m_ecm, vpXmlParser::nodeMap, vpMe::setRange(), vpMbtXmlParser::tracking, and vpXmlParser::xmlReadUnsignedIntChild().
Referenced by vpMbtXmlParser::read_ecm().
|
inherited |
Read sample information.
vpException::fatalError | if there was an unexpected number of data. |
doc | : Pointer to the document. |
node | : Pointer to the node of the sample information. |
Definition at line 257 of file vpMbtXmlParser.cpp.
References vpMe::getNbTotalSample(), vpMe::getSampleStep(), vpMbtXmlParser::m_ecm, vpMbtXmlParser::nb_sample, vpXmlParser::nodeMap, vpMe::setNbTotalSample(), vpMe::setSampleStep(), vpMbtXmlParser::step, and vpXmlParser::xmlReadIntChild().
Referenced by readMainClass(), and vpMbtXmlParser::readMainClass().
|
virtual |
Read the parameters of the class from the file given by its document pointer and by its root node.
doc | : Document to parse. |
node | : Root node. |
Reimplemented from vpMbtXmlParser.
Definition at line 118 of file vpMbtEdgeKltXmlParser.cpp.
References vpMbXmlParser::angleAppear, vpMbXmlParser::angleDisappear, vpMbtKltXmlParser::blockSize, vpMbXmlParser::cam, camera, ecm, face, vpCameraParameters::get_px(), vpCameraParameters::get_py(), vpCameraParameters::get_u0(), vpCameraParameters::get_v0(), vpMe::getMaskNumber(), vpMe::getMaskSize(), vpMe::getMu1(), vpMe::getMu2(), vpMe::getNbTotalSample(), vpMe::getRange(), vpMe::getSampleStep(), vpMe::getThreshold(), vpMbtKltXmlParser::harrisParam, klt, vpMbtXmlParser::m_ecm, vpMbtKltXmlParser::maskBorder, vpMbtKltXmlParser::maxFeatures, vpMbtKltXmlParser::minDist, vpXmlParser::nodeMap, vpMbtKltXmlParser::pyramidLevels, vpMbtKltXmlParser::qualityValue, vpMbXmlParser::read_camera(), vpMbtXmlParser::read_ecm(), vpMbXmlParser::read_face(), vpMbtKltXmlParser::read_klt(), vpMbtXmlParser::read_sample(), sample, and vpMbtKltXmlParser::winSize.
|
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.
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 376 of file vpXmlParser.cpp.
References vpException::ioError, vpXmlParser::main_tag, vpERROR_TRACE, and vpXmlParser::writeMainClass().
|
inlineinherited |
Set the angle to determine if a face appeared.
aappear | : New angleAppear |
Definition at line 173 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Set the angle to determine if a face disappeared.
adisappear | : New angleDisappear |
Definition at line 180 of file vpMbXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Set the size of a block.
bs | : New blockSize |
Definition at line 170 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Definition at line 182 of file vpMbXmlParser.h.
Referenced by vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Set the far clipping distance.
fclip | : New farClipping |
Definition at line 189 of file vpMbXmlParser.h.
|
inlineinherited |
Set the Harris free parameter.
hp | : New harrisParam |
Definition at line 177 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
set the name of the main tag
The main tag corresponds to the name of the root node
tag | : name of the root node of the document |
Definition at line 280 of file vpXmlParser.h.
Referenced by vpMbXmlParser::init().
|
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:
The following map has to be declared:
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:
_map | : the map describing the data to parse |
Definition at line 271 of file vpXmlParser.h.
|
inlineinherited |
Set the Border of the mask.
mb | = new maskBorder |
Definition at line 184 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Set the maximum number of features for the KLT.
mF | : New maxFeatures |
Definition at line 191 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Set the minimum distance between KLT points.
mD | : New minDist |
Definition at line 198 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Definition at line 111 of file vpMbtXmlParser.h.
Referenced by vpMbEdgeKltTracker::loadConfigFile(), and vpMbEdgeTracker::loadConfigFile().
|
inlineinherited |
Set the near clipping distance.
nclip | : New nearClipping |
Definition at line 196 of file vpMbXmlParser.h.
|
inlineinherited |
Set the number of pyramid levels
pL | : New pyramidLevels |
Definition at line 205 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Set the quality of the KLT.
q | : New quality |
Definition at line 212 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
inlineinherited |
Set the size of the window used in the KLT tracker.
w | : New winSize |
Definition at line 219 of file vpMbtKltXmlParser.h.
Referenced by vpMbKltTracker::loadConfigFile(), and vpMbEdgeKltTracker::loadConfigFile().
|
virtual |
Write info to file.
Reimplemented from vpMbtXmlParser.
Definition at line 105 of file vpMbtEdgeKltXmlParser.cpp.
References vpException::notImplementedError.
|
protectedinherited |
Read an array of character.
doc | : The main xml document |
node | : a pointer to the node to read value |
Definition at line 110 of file vpXmlParser.cpp.
References vpException::fatalError.
|
protectedinherited |
read a double
doc | : The main xml document |
node | : a pointer to the node to read value |
Definition at line 224 of file vpXmlParser.cpp.
References vpException::fatalError, and vpException::ioError.
Referenced by vpMbXmlParser::read_camera(), vpMbtXmlParser::read_contrast(), vpMbXmlParser::read_face(), and vpMbtKltXmlParser::read_klt().
|
protectedinherited |
read an int
doc | : The main xml document |
node | : a pointer to the node to read value |
Definition at line 155 of file vpXmlParser.cpp.
References vpException::fatalError, and vpException::ioError.
Referenced by vpMbXmlParser::read_face(), and vpMbtXmlParser::read_sample().
|
protectedinherited |
Read an array of character.
doc | : The main xml document |
node | : a pointer to the node to read value |
Definition at line 131 of file vpXmlParser.cpp.
References vpException::fatalError.
|
protectedinherited |
read an int
doc | : The main xml document |
node | : a pointer to the node to read value |
Definition at line 189 of file vpXmlParser.cpp.
References vpException::fatalError, and vpException::ioError.
Referenced by vpMbtKltXmlParser::read_klt(), vpMbtXmlParser::read_mask(), and vpMbtXmlParser::read_range().
|
protectedinherited |
write an array of character.
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 254 of file vpXmlParser.cpp.
|
protectedinherited |
write a double.
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 320 of file vpXmlParser.cpp.
|
protectedinherited |
write an integer.
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 285 of file vpXmlParser.cpp.
|
protectedinherited |
write an array of character.
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 269 of file vpXmlParser.cpp.
|
protectedinherited |
write an unsigned integer.
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 302 of file vpXmlParser.cpp.
|
protectedinherited |
Angle to determine if a face appeared.
Definition at line 73 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face(), readMainClass(), vpMbtXmlParser::readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbXmlParser::readMainClass().
|
protectedinherited |
Angle to determine if a face disappeared.
Definition at line 75 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face(), readMainClass(), vpMbtXmlParser::readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbXmlParser::readMainClass().
|
protectedinherited |
Block size.
Definition at line 81 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Camera parameters.
Definition at line 71 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_camera(), readMainClass(), vpMbtXmlParser::readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbXmlParser::readMainClass().
|
protectedinherited |
Near clipping distance.
Definition at line 83 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face().
|
protectedinherited |
Fov Clipping.
Definition at line 85 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face().
|
protectedinherited |
Harris free parameters.
Definition at line 79 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Is far clipping distance specified?
Definition at line 81 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face().
|
protectedinherited |
Is near clipping distance specified?
Definition at line 77 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face().
|
protectedinherited |
Moving edges parameters.
Definition at line 74 of file vpMbtXmlParser.h.
Referenced by vpMbtXmlParser::read_contrast(), vpMbtXmlParser::read_ecm(), vpMbtXmlParser::read_mask(), vpMbtXmlParser::read_range(), vpMbtXmlParser::read_sample(), readMainClass(), and vpMbtXmlParser::readMainClass().
|
protectedinherited |
The name of the main tag for the file to parse
Definition at line 202 of file vpXmlParser.h.
Referenced by vpXmlParser::save(), and vpXmlParser::vpXmlParser().
|
protectedinherited |
Border of the mask used on Klt points.
Definition at line 69 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Maximum of Klt features.
Definition at line 71 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Minimum distance between klt points.
Definition at line 77 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Near clipping distance.
Definition at line 79 of file vpMbXmlParser.h.
Referenced by vpMbXmlParser::read_face().
|
protectedinherited |
The map describing the data to parse
Definition at line 197 of file vpXmlParser.h.
Referenced by init(), vpMbtXmlParser::init(), vpMbXmlParser::init(), vpMbtKltXmlParser::init(), vpMbXmlParser::read_camera(), vpMbtXmlParser::read_contrast(), vpMbtXmlParser::read_ecm(), vpMbXmlParser::read_face(), vpMbtKltXmlParser::read_klt(), vpMbtXmlParser::read_mask(), vpMbtXmlParser::read_range(), vpMbtXmlParser::read_sample(), readMainClass(), vpMbtXmlParser::readMainClass(), vpMbtKltXmlParser::readMainClass(), vpMbXmlParser::readMainClass(), and vpXmlParser::vpXmlParser().
|
protectedinherited |
Number of pyramid levels.
Definition at line 83 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Quality of the Klt points.
Definition at line 75 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().
|
protectedinherited |
Windows size.
Definition at line 73 of file vpMbtKltXmlParser.h.
Referenced by vpMbtKltXmlParser::read_klt(), readMainClass(), vpMbtKltXmlParser::readMainClass(), and vpMbtKltXmlParser::vpMbtKltXmlParser().