![]() |
Visual Servoing Platform version 3.7.0
|
#include <vpHomogeneousMatrix.h>
Public Member Functions | |
| vpHomogeneousMatrix () | |
| vpHomogeneousMatrix (const vpHomogeneousMatrix &M) | |
| vpHomogeneousMatrix (const vpTranslationVector &t, const vpRotationMatrix &R) | |
| vpHomogeneousMatrix (const vpTranslationVector &t, const vpThetaUVector &tu) | |
| vpHomogeneousMatrix (const vpTranslationVector &t, const vpQuaternionVector &q) | |
| VP_EXPLICIT | vpHomogeneousMatrix (const vpPoseVector &p) |
| VP_EXPLICIT | vpHomogeneousMatrix (const std::vector< float > &v) |
| VP_EXPLICIT | vpHomogeneousMatrix (const std::vector< double > &v) |
| vpHomogeneousMatrix (double tx, double ty, double tz, double tux, double tuy, double tuz) | |
| VP_EXPLICIT | vpHomogeneousMatrix (const std::initializer_list< double > &list) |
| vpHomogeneousMatrix & | buildFrom (const vpTranslationVector &t, const vpRotationMatrix &R) |
| vpHomogeneousMatrix & | buildFrom (const vpTranslationVector &t, const vpThetaUVector &tu) |
| vpHomogeneousMatrix & | buildFrom (const vpTranslationVector &t, const vpQuaternionVector &q) |
| vpHomogeneousMatrix & | buildFrom (const vpPoseVector &p) |
| vpHomogeneousMatrix & | buildFrom (const std::vector< float > &v) |
| vpHomogeneousMatrix & | buildFrom (const std::vector< double > &v) |
| vpHomogeneousMatrix & | buildFrom (const double &tx, const double &ty, const double &tz, const double &tux, const double &tuy, const double &tuz) |
| void | convert (std::vector< float > &M) |
| void | convert (std::vector< double > &M) |
| void | eye () |
| vpColVector | getCol (unsigned int j) const |
| vpRotationMatrix | getRotationMatrix () const |
| vpThetaUVector | getThetaUVector () const |
| vpTranslationVector | getTranslationVector () const |
| vpHomogeneousMatrix | inverse () const |
| void | inverse (vpHomogeneousMatrix &Mi) const |
| bool | isAnHomogeneousMatrix (double threshold=1e-6) const |
| bool | isValid () const |
| void | insert (const vpRotationMatrix &R) |
| void | insert (const vpThetaUVector &tu) |
| void | insert (const vpTranslationVector &t) |
| void | insert (const vpQuaternionVector &t) |
| void | extract (vpRotationMatrix &R) const |
| void | extract (vpThetaUVector &tu) const |
| void | extract (vpTranslationVector &t) const |
| void | extract (vpQuaternionVector &q) const |
| void | load (std::ifstream &f) |
| void | load (const std::string &filename) |
| void | save (std::ofstream &f) const |
| void | save (const std::string &filename) const |
| vpHomogeneousMatrix & | operator= (const vpHomogeneousMatrix &M) |
| vpHomogeneousMatrix | operator* (const vpHomogeneousMatrix &M) const |
| vpHomogeneousMatrix & | operator*= (const vpHomogeneousMatrix &M) |
| vpColVector | operator* (const vpColVector &v) const |
| vpTranslationVector | operator* (const vpTranslationVector &t) const |
| vpHomogeneousMatrix | operator* (const vpRotationMatrix &R) const |
| vpPoint | operator* (const vpPoint &bP) const |
| vpHomogeneousMatrix & | operator<< (double val) |
| vpHomogeneousMatrix & | operator, (double val) |
| void | orthogonalizeRotation () |
| void | print () const |
| VP_NORETURN void | resize (unsigned int nrows, unsigned int ncols, bool flagNullify=true) |
Inherited functionalities from vpArray2D | |
| unsigned int | getCols () const |
| double | getMaxValue () const |
| double | getMinValue () const |
| unsigned int | getRows () const |
| unsigned int | size () const |
| void | resize (unsigned int nrows, unsigned int ncols, bool flagNullify=true, bool recopy_=true) |
| void | reshape (unsigned int nrows, unsigned int ncols) |
| void | insert (const vpArray2D< double > &A, unsigned int r, unsigned int c) |
| bool | operator!= (const vpArray2D< double > &A) const |
| double * | operator[] (unsigned int i) |
| vpArray2D< double > | hadamard (const vpArray2D< double > &m) const |
| vpArray2D< double > | t () const |
Static Public Member Functions | |
| static vpHomogeneousMatrix | compute3d3dTransformation (const std::vector< vpPoint > &p, const std::vector< vpPoint > &q) |
| static vpHomogeneousMatrix | mean (const std::vector< vpHomogeneousMatrix > &vec_M) |
| static vpArray2D< double > | view (const vpArray2D< double > &A) |
Public Attributes | |
| double * | data |
Static Public Attributes | |
| static const std::string | jsonTypeName = "vpHomogeneousMatrix" |
Friends | |
| void | to_json (nlohmann::json &j, const vpHomogeneousMatrix &T) |
| void | from_json (const nlohmann::json &j, vpHomogeneousMatrix &T) |
Related Symbols | |
(Note that these are not member symbols.) | |
| bool | operator== (const vpArray2D< double > &A) const |
| bool | operator== (const vpArray2D< float > &A) const |
| void | vpGEMM (const vpArray2D< double > &A, const vpArray2D< double > &B, const double &alpha, const vpArray2D< double > &C, const double &beta, vpArray2D< double > &D, const unsigned int &ops=0) |
| enum | vpGEMMmethod |
Deprecated functions | |
| unsigned int | m_index |
| VP_DEPRECATED void | init () |
| VP_DEPRECATED void | setIdentity () |
Inherited I/O from vpArray2D with Static Public Member Functions | |
| unsigned int | rowNum |
| unsigned int | colNum |
| double ** | rowPtrs |
| unsigned int | dsize |
| bool | isMemoryOwner |
| bool | isRowPtrsOwner |
| static bool | load (const std::string &filename, vpArray2D< double > &A, bool binary=false, char *header=nullptr) |
| static bool | loadYAML (const std::string &filename, vpArray2D< double > &A, char *header=nullptr) |
| static bool | save (const std::string &filename, const vpArray2D< double > &A, bool binary=false, const char *header="") |
| static bool | saveYAML (const std::string &filename, const vpArray2D< double > &A, const char *header="") |
| static vpArray2D< double > | conv2 (const vpArray2D< double > &M, const vpArray2D< double > &kernel, const std::string &mode) |
| static bool | isFinite (const vpArray2D< double > &A) |
Implementation of an homogeneous matrix and operations on such kind of matrices.
The class provides a data structure for the homogeneous matrices as well as a set of operations on these matrices.
The vpHomogeneousMatrix class is derived from vpArray2D<double>.
An homogeneous matrix is 4x4 matrix defines as
that defines the position of frame b in frame a
is a rotation matrix and
is a translation vector.
There are different ways to initialize an homogeneous matrix. You can set each element of the matrix like:
It produces the following printings:
You can also use vpRotationMatrix::operator<< and vpTranslationVector::operator<< like:
If ViSP is build with c++11 enabled, you can do the same using:
JSON serialization
Since ViSP 3.6.0, if ViSP is build with JSON for modern C++ 3rd-party we introduce JSON serialization capabilities for vpHomogeneousMatrix. The following sample code shows how to save a homogeneous matrix in a file named homo-mat.json and reload the values from this JSON file.
If you build and execute the sample code, it will produce the following output:
The content of the homo-mat.json file is the following:
Definition at line 220 of file vpHomogeneousMatrix.h.
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | ) |
Default constructor that initialize an homogeneous matrix as identity.
Definition at line 63 of file vpHomogeneousMatrix.cpp.
References eye(), m_index, and vpArray2D< double >::vpArray2D().
Referenced by buildFrom(), buildFrom(), buildFrom(), buildFrom(), buildFrom(), buildFrom(), buildFrom(), compute3d3dTransformation(), from_json, inverse(), inverse(), mean(), operator*(), operator*(), operator*=(), operator,(), operator<<(), operator=(), to_json, and vpHomogeneousMatrix().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const vpHomogeneousMatrix & | M | ) |
Copy constructor that initialize an homogeneous matrix from another homogeneous matrix.
Definition at line 69 of file vpHomogeneousMatrix.cpp.
References m_index, vpArray2D< double >::vpArray2D(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const vpTranslationVector & | t, |
| const vpRotationMatrix & | R ) |
Construct an homogeneous matrix from a translation vector and a rotation matrix.
Definition at line 90 of file vpHomogeneousMatrix.cpp.
References insert(), m_index, vpArray2D< double >::t(), and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const vpTranslationVector & | t, |
| const vpThetaUVector & | tu ) |
Construct an homogeneous matrix from a translation vector and
rotation vector.
Definition at line 78 of file vpHomogeneousMatrix.cpp.
References buildFrom(), m_index, vpArray2D< double >::t(), and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const vpTranslationVector & | t, |
| const vpQuaternionVector & | q ) |
Construct an homogeneous matrix from a translation vector and quaternion rotation vector.
Definition at line 52 of file vpHomogeneousMatrix.cpp.
References buildFrom(), vpArray2D< double >::t(), and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const vpPoseVector & | p | ) |
Construct an homogeneous matrix from a pose vector.
Definition at line 102 of file vpHomogeneousMatrix.cpp.
References buildFrom(), m_index, and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const std::vector< float > & | v | ) |
Construct an homogeneous matrix from a vector of float.
| v | : Vector of 12 or 16 values corresponding to the values of the homogeneous matrix. |
The following example shows how to use this function:
It produces the following printings:
Definition at line 157 of file vpHomogeneousMatrix.cpp.
References buildFrom(), m_index, and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const std::vector< double > & | v | ) |
Construct an homogeneous matrix from a vector of double.
| v | : Vector of 12 or 16 values corresponding to the values of the homogeneous matrix. |
The following example shows how to use this function:
It produces the following printings:
Definition at line 295 of file vpHomogeneousMatrix.cpp.
References buildFrom(), m_index, and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | double | tx, |
| double | ty, | ||
| double | tz, | ||
| double | tux, | ||
| double | tuy, | ||
| double | tuz ) |
Construct an homogeneous matrix from a translation vector
and a
rotation vector.
Definition at line 307 of file vpHomogeneousMatrix.cpp.
References buildFrom(), m_index, and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix::vpHomogeneousMatrix | ( | const std::initializer_list< double > & | list | ) |
Construct an homogeneous matrix from a list of 12 or 16 double values.
| list | : List of double. The following code shows how to use this constructor to initialize an homogeneous matrix: #include <visp3/core/vpHomogeneousMatrix.h>
#ifdef ENABLE_VISP_NAMESPACE
using namespace VISP_NAMESPACE_NAME;
#endif
int main()
{
0, 0, 1, 0.1,
0, 1, 0, 0.2,
1, 0, 0, 0.3 };
std::cout << "M:\n" << M << std::endl;
0, 0, 1, 0.1,
0, 1, 0, 0.2,
1, 0, 0, 0.3,
0, 0, 0, 1 };
std::cout << "N:\n" << N << std::endl;
}
Implementation of an homogeneous matrix and operations on such kind of matrices. Definition vpHomogeneousMatrix.h:221 M:
0 0 1 0.1
0 1 0 0.2
1 0 0 0.3
0 0 0 1
N:
0 0 1 0.1
0 1 0 0.2
1 0 0 0.3
0 0 0 1
|
Definition at line 205 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data, vpException::fatalError, m_index, and vpArray2D< double >::vpArray2D().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const double & | tx, |
| const double & | ty, | ||
| const double & | tz, | ||
| const double & | tux, | ||
| const double & | tuy, | ||
| const double & | tuz ) |
Build an homogeneous matrix from a translation vector
and a
rotation vector.
Definition at line 372 of file vpHomogeneousMatrix.cpp.
References insert(), vpArray2D< double >::t(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const std::vector< double > & | v | ) |
Build an homogeneous matrix from a vector of double.
| v | : Vector of 12 or 16 values corresponding to the values of the homogeneous matrix. |
The following example shows how to use this function:
It produces the following printings:
Definition at line 509 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data, vpException::dimensionError, vpException::fatalError, isAnHomogeneousMatrix(), orthogonalizeRotation(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const std::vector< float > & | v | ) |
Build an homogeneous matrix from a vector of float.
| v | : Vector of 12 or 16 values corresponding to the values of the homogeneous matrix. |
The following example shows how to use this function:
It produces the following printings:
Definition at line 426 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data, vpException::dimensionError, vpException::fatalError, isAnHomogeneousMatrix(), orthogonalizeRotation(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const vpPoseVector & | p | ) |
Build an homogeneous matrix from a pose vector.
Definition at line 340 of file vpHomogeneousMatrix.cpp.
References insert(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const vpTranslationVector & | t, |
| const vpQuaternionVector & | q ) |
Build an homogeneous matrix from a translation vector and a quaternion rotation vector.
Definition at line 360 of file vpHomogeneousMatrix.cpp.
References insert(), vpArray2D< double >::t(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const vpTranslationVector & | t, |
| const vpRotationMatrix & | R ) |
Build an homogeneous matrix from a translation vector and a rotation matrix.
Definition at line 330 of file vpHomogeneousMatrix.cpp.
References insert(), vpArray2D< double >::t(), and vpHomogeneousMatrix().
Referenced by vpMbTracker::initClick(), vpMarkersMeasurements::likelihood(), vpMbTracker::loadCAOModel(), vpMbTracker::loadInitFile(), vpMarkersMeasurements::measureGT(), vpWireFrameSimulator::navigation(), vpWireFrameSimulator::navigation(), vpPioneerPan::set_cMe(), vpWireFrameSimulator::setExternalCameraPosition(), vpMarkersMeasurements::state_to_measurement(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::buildFrom | ( | const vpTranslationVector & | t, |
| const vpThetaUVector & | tu ) |
Build an homogeneous matrix from a translation vector and a
rotation vector.
Definition at line 319 of file vpHomogeneousMatrix.cpp.
References insert(), vpArray2D< double >::t(), and vpHomogeneousMatrix().
|
static |
Compute the transformation between two point clouds.
| [in] | p | : First point cloud. |
| [in] | q | : Second point cloud. |
Definition at line 1246 of file vpHomogeneousMatrix.cpp.
References vpMatrix::svd(), vpArray2D< double >::t(), vpMatrix::t(), and vpHomogeneousMatrix().
Referenced by vpPose::computePlanarObjectPoseFromRGBD(), vpPose::computePlanarObjectPoseFromRGBD(), and vpPose::computePlanarObjectPoseWithAtLeast3Points().
|
staticinherited |
Perform a 2D convolution similar to Matlab conv2 function:
.
| M | : First matrix. |
| kernel | : Second matrix. |
| mode | : Convolution mode: "full" (default), "same", "valid". |
Definition at line 1142 of file vpArray2D.h.
References vpArray2D().
| void vpHomogeneousMatrix::convert | ( | std::vector< double > & | M | ) |
Converts an homogeneous matrix to a vector of 12 doubles.
| M | : Converted matrix. |
Definition at line 1154 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data.
| void vpHomogeneousMatrix::convert | ( | std::vector< float > & | M | ) |
Converts an homogeneous matrix to a vector of 12 floats.
| M | : Converted matrix. |
Definition at line 1140 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data.
| void vpHomogeneousMatrix::extract | ( | vpQuaternionVector & | q | ) | const |
Extract the rotation as a quaternion.
Definition at line 948 of file vpHomogeneousMatrix.cpp.
References vpQuaternionVector::buildFrom().
| void vpHomogeneousMatrix::extract | ( | vpRotationMatrix & | R | ) | const |
Extract the rotational matrix from the homogeneous matrix.
| R | : rotational component as a rotation matrix. |
Definition at line 912 of file vpHomogeneousMatrix.cpp.
Referenced by vpFeatureThetaU::buildFrom(), vpPoseVector::buildFrom(), vpThetaUVector::buildFrom(), vpTranslationVector::buildFrom(), vpMbtDistanceKltPoints::computeHomography(), vpViper::get_eJe(), vpViper::get_fJe(), vpRobotAfma6::getDisplacement(), vpRobotAfma6::getPosition(), vpRobotViper650::getPosition(), vpRobotViper850::getPosition(), vpSimulatorAfma6::getPosition(), vpSimulatorViper850::getPosition(), getRotationMatrix(), getThetaUVector(), getTranslationVector(), vpRobotAfma6::getVelocity(), vpRobotViper650::getVelocity(), vpRobotViper850::getVelocity(), vpExponentialMap::inverse(), inverse(), isAnHomogeneousMatrix(), operator*(), vpAfma6::operator<<, vpViper::operator<<, vpWireFrameSimulator::setExternalCameraPosition(), vpMbKltTracker::setPose(), vpAROgre::setPosition(), vpSimulatorAfma6::setPosition(), vpFeatureThetaU::vpFeatureThetaU(), and vpTranslationVector::vpTranslationVector().
| void vpHomogeneousMatrix::extract | ( | vpThetaUVector & | tu | ) | const |
Extract the rotation as a
vector.
Definition at line 938 of file vpHomogeneousMatrix.cpp.
| void vpHomogeneousMatrix::extract | ( | vpTranslationVector & | t | ) | const |
Extract the translation vector from the homogeneous matrix.
Definition at line 925 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::t().
| void vpHomogeneousMatrix::eye | ( | ) |
Set transformation to identity.
Definition at line 1037 of file vpHomogeneousMatrix.cpp.
Referenced by vpHandEyeCalibration::calibrate(), vpHandEyeCalibration::calibrate(), vpViper::get_eMs(), vpViper::get_wMe(), vpMbTracker::initClick(), setIdentity(), and vpHomogeneousMatrix().
| vpColVector vpHomogeneousMatrix::getCol | ( | unsigned int | j | ) | const |
Extract a column vector from an homogeneous matrix.
| j | : Index of the column to extract. If j=0, the first column is extracted. |
The following example shows how to use this function:
It produces the following output:
Definition at line 1227 of file vpHomogeneousMatrix.cpp.
References vpException::dimensionError, vpArray2D< double >::getCols(), and vpArray2D< double >::getRows().
|
inlineinherited |
Return the number of columns of the 2D array.
Definition at line 423 of file vpArray2D.h.
Referenced by vpMatrix::choleskyByEigen3(), vpMatrix::choleskyByLapack(), vpMatrix::choleskyByOpenCV(), vpMatrix::cond(), vpMatrix::cppPrint(), vpRowVector::cppPrint(), vpMatrix::csvPrint(), vpRowVector::csvPrint(), vpMatrix::detByLUEigen3(), vpMatrix::extract(), vpHomogeneousMatrix::getCol(), vpMatrix::getCol(), vpRotationMatrix::getCol(), vpMatrix::inducedL2Norm(), vpMatrix::inverseByLUEigen3(), vpMatrix::inverseByQRLapack(), vpRotationMatrix::isARotationMatrix(), vpMatrix::kernel(), vpMatrix::maplePrint(), vpRowVector::maplePrint(), vpMatrix::matlabPrint(), vpRowVector::matlabPrint(), vpMatrix::nullSpace(), vpMatrix::nullSpace(), vpRowVector::operator*(), vpRowVector::operator+(), vpRowVector::operator+=(), vpRowVector::operator-(), vpRowVector::operator-=(), vpForceTwistMatrix::print(), vpMatrix::print(), vpRowVector::print(), vpVelocityTwistMatrix::print(), vpMatrix::row(), vpMatrix::svdEigen3(), vpMatrix::svdLapack(), vpMatrix::svdOpenCV(), vpRowVector::vpRowVector(), and vpRowVector::vpRowVector().
|
inherited |
Return the array max value.
Definition at line 425 of file vpArray2D.h.
|
inherited |
Return the array min value.
Definition at line 427 of file vpArray2D.h.
| vpRotationMatrix vpHomogeneousMatrix::getRotationMatrix | ( | ) | const |
Return the rotation matrix from the homogeneous transformation matrix.
Definition at line 1177 of file vpHomogeneousMatrix.cpp.
References extract().
Referenced by vpForceTwistMatrix::buildFrom(), vpVelocityTwistMatrix::buildFrom(), vpRBSilhouetteMeTracker::extractFeatures(), vpRotationMatrix::operator*(), vpPointMap::selectValidNewCandidates(), vpPanda3DBaseRenderer::setNodePose(), vpRobotBebop2::setPosition(), vpForceTwistMatrix::vpForceTwistMatrix(), and vpVelocityTwistMatrix::vpVelocityTwistMatrix().
|
inlineinherited |
Return the number of rows of the 2D array.
Definition at line 433 of file vpArray2D.h.
Referenced by vpMatrix::choleskyByEigen3(), vpMatrix::choleskyByLapack(), vpMatrix::choleskyByOpenCV(), vpMatrix::column(), vpMatrix::cond(), vpColVector::cppPrint(), vpMatrix::cppPrint(), vpColVector::csvPrint(), vpMatrix::csvPrint(), vpMatrix::detByLUEigen3(), vpMatrix::extract(), vpHomogeneousMatrix::getCol(), vpMatrix::getCol(), vpRotationMatrix::getCol(), vpMatrix::inducedL2Norm(), vpMatrix::inverseByCholeskyLapack(), vpMatrix::inverseByLUEigen3(), vpMatrix::inverseByQRLapack(), vpRotationMatrix::isARotationMatrix(), vpMatrix::kernel(), vpColVector::maplePrint(), vpMatrix::maplePrint(), vpColVector::matlabPrint(), vpMatrix::matlabPrint(), vpMatrix::nullSpace(), vpMatrix::nullSpace(), vpColVector::operator*(), vpColVector::operator+(), vpColVector::operator+(), vpColVector::operator+=(), vpColVector::operator+=(), vpColVector::operator-(), vpColVector::operator-=(), vpColVector::operator-=(), vpColVector::print(), vpForceTwistMatrix::print(), vpMatrix::print(), vpPoseVector::print(), vpVelocityTwistMatrix::print(), vpMatrix::svdEigen3(), vpMatrix::svdLapack(), vpMatrix::svdOpenCV(), vpColVector::vpColVector(), and vpColVector::vpColVector().
| vpThetaUVector vpHomogeneousMatrix::getThetaUVector | ( | ) | const |
Return the
vector that corresponds to the rotation part of the homogeneous transformation.
Definition at line 1188 of file vpHomogeneousMatrix.cpp.
References extract().
Referenced by vpRBKltTracker::vpTrackedKltPoint::rotationDifferenceToInitial().
| vpTranslationVector vpHomogeneousMatrix::getTranslationVector | ( | ) | const |
Return the translation vector from the homogeneous transformation matrix.
Definition at line 1167 of file vpHomogeneousMatrix.cpp.
References extract().
Referenced by vpForceTwistMatrix::buildFrom(), vpVelocityTwistMatrix::buildFrom(), vpRBDenseDepthTracker::extractFeatures(), vpRotationMatrix::operator*(), vpRBProbabilistic3DDriftDetector::score(), vpPointMap::selectValidNewCandidates(), vpAfma6::set_eMc(), vpPanda3DBaseRenderer::setNodePose(), and vpRobotBebop2::setPosition().
Compute the Hadamard product (element wise matrix multiplication).
| m | : Second matrix; |
Definition at line 732 of file vpArray2D.h.
References vpArray2D().
|
inline |
Definition at line 427 of file vpHomogeneousMatrix.h.
|
inlineinherited |
Insert array A at the given position in the current array.
| A | : The array to insert. |
| r | : The index of the row to begin to insert data. |
| c | : The index of the column to begin to insert data. |
Definition at line 586 of file vpArray2D.h.
| void vpHomogeneousMatrix::insert | ( | const vpQuaternionVector & | q | ) |
Insert the rotational component of the homogeneous matrix from a quaternion rotation vector.
Definition at line 1000 of file vpHomogeneousMatrix.cpp.
References insert().
| void vpHomogeneousMatrix::insert | ( | const vpRotationMatrix & | R | ) |
Insert the rotational component of the homogeneous matrix.
Definition at line 958 of file vpHomogeneousMatrix.cpp.
Referenced by buildFrom(), buildFrom(), buildFrom(), buildFrom(), buildFrom(), vpHandEyeCalibration::calibrate(), vpExponentialMap::direct(), insert(), insert(), inverse(), orthogonalizeRotation(), and vpHomogeneousMatrix().
| void vpHomogeneousMatrix::insert | ( | const vpThetaUVector & | tu | ) |
Insert the rotational component of the homogeneous matrix from a
rotation vector.
Definition at line 974 of file vpHomogeneousMatrix.cpp.
References insert().
| void vpHomogeneousMatrix::insert | ( | const vpTranslationVector & | t | ) |
Insert the translational component in a homogeneous matrix.
Definition at line 983 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::t().
| vpHomogeneousMatrix vpHomogeneousMatrix::inverse | ( | ) | const |
Invert the homogeneous matrix.
Definition at line 1016 of file vpHomogeneousMatrix.cpp.
References extract(), insert(), and vpHomogeneousMatrix().
Referenced by vpObjectCentricRenderer::computeBoundingBox(), vpObjectCentricRenderer::computeClipping(), vpBiclops::computeMGD(), vpPtu46::computeMGD(), vpPanda3DBaseRenderer::computeNearAndFarPlanesFromNode(), vpMbDepthDenseTracker::computeVVS(), vpMbDepthNormalTracker::computeVVS(), vpMbEdgeKltTracker::computeVVS(), vpMbEdgeTracker::computeVVS(), vpMbGenericTracker::computeVVS(), vpMbKltTracker::computeVVS(), vpMbEdgeTracker::computeVVSFirstPhasePoseEstimation(), vpPtu46::get_cMe(), vpRobotWireFrameSimulator::get_cMo(), vpViper::get_eJe(), vpViper::get_fJe(), vpBiclops::get_fMc(), vpRobotAfma6::getDisplacement(), vpRobotBiclops::getDisplacement(), vpSimulator::getExternalCameraPosition(), vpSimulatorAfma6::getExternalImage(), vpSimulatorViper850::getExternalImage(), vpWireFrameSimulator::getExternalImage(), vpWireFrameSimulator::getExternalImage(), vpRobotFranka::getForceTorque(), vpRobotUniversalRobots::getForceTorque(), vpRobotWireFrameSimulator::getInternalView(), vpRobotWireFrameSimulator::getInternalView(), vpViper::getInverseKinematics(), vpRobotAfma6::getVelocity(), vpRobotViper650::getVelocity(), vpRobotViper850::getVelocity(), vpSimulatorAfma6::initialiseCameraRelativeToObject(), vpSimulatorViper850::initialiseCameraRelativeToObject(), inverse(), vpRBVisualOdometryUtils::levenbergMarquardtKeypoints2D(), vpRBVisualOdometryUtils::levenbergMarquardtKeypoints3D(), vpPose::poseVirtualVS(), vpPose::poseVirtualVSrobust(), vpPose::poseVirtualVSWithDepth(), vpWireFrameSimulator::projectCameraTrajectory(), vpWireFrameSimulator::projectCameraTrajectory(), vpWireFrameSimulator::projectCameraTrajectory(), vpWireFrameSimulator::projectCameraTrajectory(), vpPioneerPan::set_cMe(), vpWireFrameSimulator::setCameraPositionRelObj(), vpWireFrameSimulator::setCameraPositionRelWorld(), vpMbKltTracker::setPose(), vpSimulatorAfma6::setPosition(), vpRobotCamera::setVelocity(), vpRBTracker::track(), and vpRBProbabilistic3DDriftDetector::update().
| void vpHomogeneousMatrix::inverse | ( | vpHomogeneousMatrix & | M | ) | const |
Invert the homogeneous matrix.
| M | : The inverted homogeneous matrix: |
Definition at line 1076 of file vpHomogeneousMatrix.cpp.
References inverse(), and vpHomogeneousMatrix().
| bool vpHomogeneousMatrix::isAnHomogeneousMatrix | ( | double | threshold = 1e-6 | ) | const |
Test if the 3x3 rotational part of the homogeneous matrix is a valid rotation matrix and the last row is equal to [0, 0, 0, 1].
Definition at line 878 of file vpHomogeneousMatrix.cpp.
References vpMath::equal(), extract(), and vpMath::nul().
Referenced by buildFrom(), and buildFrom().
Definition at line 1188 of file vpArray2D.h.
| bool vpHomogeneousMatrix::isValid | ( | ) | const |
Check if the homogeneous transformation matrix doesn't have a value NaN.
Definition at line 897 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data, vpMath::isNaN(), and vpArray2D< double >::size().
|
inlinestaticinherited |
Load a matrix from a file.
| filename | : Absolute file name. |
| A | : Array to be loaded |
| binary | : If true the matrix is loaded from a binary file, else from a text file. |
| header | : Header of the file is loaded in this parameter. |
Definition at line 760 of file vpArray2D.h.
| void vpHomogeneousMatrix::load | ( | const std::string & | filename | ) |
Read an homogeneous matrix from an input file. The homogeneous matrix is considered as a 4 by 4 matrix.
| filename | : Input file name. |
The code below shows how to get an homogeneous matrix from a file.
Definition at line 1111 of file vpHomogeneousMatrix.cpp.
References load().
| void vpHomogeneousMatrix::load | ( | std::ifstream & | f | ) |
Read an homogeneous matrix from an input file stream. The homogeneous matrix is considered as a 4 by 4 matrix.
| f | : Input file stream. |
The code below shows how to get an homogeneous matrix from a file.
Definition at line 1096 of file vpHomogeneousMatrix.cpp.
References vpException::ioError.
Referenced by load().
|
inlinestaticinherited |
Load an array from a YAML-formatted file.
| filename | : absolute file name. |
| A | : array to be loaded from the file. |
| header | : header of the file is loaded in this parameter. |
Definition at line 874 of file vpArray2D.h.
|
static |
Compute the Euclidean mean of the homogeneous matrices. The Euclidean mean of the rotation matrices is computed following Moakher's method (SIAM 2002).
| [in] | vec_M | : Set of homogeneous matrices. |
Definition at line 1308 of file vpHomogeneousMatrix.cpp.
References mean(), vpMatrix::pseudoInverse(), vpArray2D< double >::t(), vpMatrix::t(), and vpHomogeneousMatrix().
Referenced by mean().
|
inherited |
Not equal to comparison operator of a 2D array.
Definition at line 612 of file vpArray2D.h.
References vpArray2D().
| vpColVector vpHomogeneousMatrix::operator* | ( | const vpColVector & | v | ) | const |
Operator that allow to multiply an homogeneous matrix by a 4-dimension column vector.
| vpException::dimensionError | : If the vector v is not a 4-dimension vector. |
Definition at line 645 of file vpHomogeneousMatrix.cpp.
References vpException::dimensionError, vpArray2D< double >::rowNum, and vpArray2D< double >::rowPtrs.
| vpHomogeneousMatrix vpHomogeneousMatrix::operator* | ( | const vpHomogeneousMatrix & | M | ) | const |
Operator that allow to multiply an homogeneous matrix by an other one.
Definition at line 588 of file vpHomogeneousMatrix.cpp.
References extract(), and vpHomogeneousMatrix().
From the coordinates of the point in camera frame b and the transformation between camera frame a and camera frame b computes the coordinates of the point in camera frame a.
| bP | : 3D coordinates of the point in camera frame bP. |
Definition at line 678 of file vpHomogeneousMatrix.cpp.
References vpPoint::get_W(), vpPoint::get_X(), vpPoint::get_Y(), vpPoint::get_Z(), vpPoint::set_oW(), vpPoint::set_oX(), vpPoint::set_oY(), vpPoint::set_oZ(), vpPoint::set_W(), vpPoint::set_X(), vpPoint::set_Y(), and vpPoint::set_Z().
| vpHomogeneousMatrix vpHomogeneousMatrix::operator* | ( | const vpRotationMatrix & | R | ) | const |
Operator that allows to multiply a rotation matrix by a rotation matrix.
| [in] | R | : Rotation matrix. |
The following snippet shows how to use this method:
Definition at line 753 of file vpHomogeneousMatrix.cpp.
References vpHomogeneousMatrix().
| vpTranslationVector vpHomogeneousMatrix::operator* | ( | const vpTranslationVector & | t | ) | const |
Since a translation vector could be seen as the origin point of a frame, this function computes the new coordinates of a translation vector after applying an homogeneous transformation.
| t | : Translation vector seen as the 3D coordinates of a point. |
Definition at line 725 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::t().
| vpHomogeneousMatrix & vpHomogeneousMatrix::operator*= | ( | const vpHomogeneousMatrix & | M | ) |
Operator that allow to multiply an homogeneous matrix by an other one.
Definition at line 632 of file vpHomogeneousMatrix.cpp.
References vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::operator, | ( | double | val | ) |
Set the second and next element of the homogenous matrix.
| val | : Value of the matrix second or next element. |
The following example shows how to initialize an homogeneous matrix using this operator.
It produces the following printings:
Definition at line 857 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data, vpException::dimensionError, m_index, vpArray2D< double >::size(), and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::operator<< | ( | double | val | ) |
Set homogeneous matrix first element.
| val | : Value of the matrix first element. |
The following example shows how to initialize a rotation matrix using this operator.
It produces the following printings:
Definition at line 804 of file vpHomogeneousMatrix.cpp.
References vpArray2D< double >::data, m_index, and vpHomogeneousMatrix().
| vpHomogeneousMatrix & vpHomogeneousMatrix::operator= | ( | const vpHomogeneousMatrix & | M | ) |
Copy operator that allows to set an homogeneous matrix from an other one.
| M | : Matrix to copy. |
Definition at line 556 of file vpHomogeneousMatrix.cpp.
References vpArray2D< Type >::rowPtrs, vpArray2D< double >::rowPtrs, and vpHomogeneousMatrix().
|
inlineinherited |
Set element
using A[i][j] = x.
Definition at line 696 of file vpArray2D.h.
| void vpHomogeneousMatrix::orthogonalizeRotation | ( | ) |
Perform orthogonalization of the rotation part of the homogeneous transformation.
Definition at line 1122 of file vpHomogeneousMatrix.cpp.
References insert().
Referenced by buildFrom(), and buildFrom().
| void vpHomogeneousMatrix::print | ( | ) | const |
Print the matrix as a pose vector
.
Definition at line 1130 of file vpHomogeneousMatrix.cpp.
|
inlineinherited |
Definition at line 545 of file vpArray2D.h.
|
inlineinherited |
Set the size of the array and initialize all the values to zero.
| nrows | : number of rows. |
| ncols | : number of column. |
| flagNullify | : if true, then the array is re-initialized to 0 after resize. If false, the initial values from the common part of the array (common part between old and new version of the array) are kept. Default value is true. |
| recopy_ | : if true, will perform an explicit recopy of the old data. |
Definition at line 448 of file vpArray2D.h.
Referenced by vpMatrix::diag(), vpMatrix::eye(), vpMatrix::init(), vpMatrix::operator,(), vpMatrix::operator<<(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::stack(), vpMatrix::stack(), vpMatrix::stack(), vpMatrix::svdEigen3(), and vpMatrix::svdOpenCV().
|
inline |
This function is not applicable to an homogeneous matrix that is always a 4-by-4 matrix.
| vpException::fatalError | When this function is called. |
Definition at line 393 of file vpHomogeneousMatrix.h.
References vpException::fatalError.
|
inlinestaticinherited |
Save a matrix to a file.
| filename | : Absolute file name. |
| A | : Array to be saved. |
| binary | : If true the matrix is saved in a binary file, else a text file. |
| header | : Optional line that will be saved at the beginning of the file. |
Warning : If you save the matrix as in a text file the precision is less than if you save it in a binary file.
Definition at line 965 of file vpArray2D.h.
| void vpHomogeneousMatrix::save | ( | const std::string & | filename | ) | const |
Save an homogeneous matrix in a file.
| filename | : Output file name. The homogeneous matrix is saved as a 4 by 4 matrix. |
The code below shows how to save an homogeneous matrix in a file.
The content of "homogeneous.dat" is the following:
* 0.7071067812 0.7071067812 0 1 * 0.7071067812 -0.7071067812 -1.224646799e-16 2 * -8.659560562e-17 8.659560562e-17 -1 3 * 0 0 0 1 *
Definition at line 1088 of file vpHomogeneousMatrix.cpp.
References save().
Referenced by gen_java.JavaWrapperGenerator::finalize(), and gen_java.JavaWrapperGenerator::gen().
| void vpHomogeneousMatrix::save | ( | std::ofstream & | f | ) | const |
Save an homogeneous matrix in an output file stream.
| f | : Output file stream. The homogeneous matrix is saved as a 4 by 4 matrix. |
The code below shows how to save an homogeneous matrix in a file.
The content of "homogeneous.dat" is the following:
* 0.7071067812 0.7071067812 0 1 * 0.7071067812 -0.7071067812 -1.224646799e-16 2 * -8.659560562e-17 8.659560562e-17 -1 3 * 0 0 0 1 *
Definition at line 1078 of file vpHomogeneousMatrix.cpp.
References vpException::ioError.
Referenced by gen_java.JavaWrapperGenerator::finalize(), gen_java.JavaWrapperGenerator::gen(), and save().
|
inlinestaticinherited |
Save an array in a YAML-formatted file.
| filename | : absolute file name. |
| A | : array to be saved in the file. |
| header | : optional lines that will be saved at the beginning of the file. Should be YAML-formatted and will adapt to the indentation if any. |
Here is an example of outputs.
Content of matrix.yml:
Content of matrixIndent.yml:
Definition at line 1061 of file vpArray2D.h.
| void vpHomogeneousMatrix::setIdentity | ( | ) |
Set homogeneous matrix to identity.
Definition at line 1357 of file vpHomogeneousMatrix.cpp.
References eye().
|
inlineinherited |
Return the number of elements of the 2D array.
Definition at line 435 of file vpArray2D.h.
Referenced by vpHomogeneousMatrix::isValid(), vpColVector::operator*(), vpHomogeneousMatrix::operator,(), vpRotationMatrix::operator,(), vpRotationVector::operator,(), vpTranslationVector::operator,(), vpQuaternionVector::operator=(), vpRxyzVector::operator=(), vpRzyxVector::operator=(), vpRzyzVector::operator=(), vpThetaUVector::operator=(), vpThetaUVector::operator=(), vpTranslationVector::operator=(), vpForceTwistMatrix::print(), vpMatrix::print(), vpVelocityTwistMatrix::print(), vpMatrix::stack(), vpColVector::toStdVector(), vpPoseVector::toStdVector(), vpRotationVector::toStdVector(), vpRowVector::toStdVector(), vpColVector::vpColVector(), vpColVector::vpColVector(), vpColVector::vpColVector(), vpColVector::vpColVector(), vpColVector::vpColVector(), vpColVector::vpColVector(), vpRowVector::vpRowVector(), and vpRowVector::vpRowVector().
Compute the transpose of the array.
Definition at line 739 of file vpArray2D.h.
References vpArray2D().
Referenced by vpForceTwistMatrix::buildFrom(), vpHomogeneousMatrix::buildFrom(), vpHomogeneousMatrix::buildFrom(), vpHomogeneousMatrix::buildFrom(), vpHomogeneousMatrix::buildFrom(), vpVelocityTwistMatrix::buildFrom(), vpVelocityTwistMatrix::buildFrom(), vpHomogeneousMatrix::compute3d3dTransformation(), vpHomogeneousMatrix::extract(), vpHomogeneousMatrix::insert(), vpHomogeneousMatrix::mean(), vpHomogeneousMatrix::operator*(), vpForceTwistMatrix::vpForceTwistMatrix(), vpForceTwistMatrix::vpForceTwistMatrix(), vpHomogeneousMatrix::vpHomogeneousMatrix(), vpHomogeneousMatrix::vpHomogeneousMatrix(), vpHomogeneousMatrix::vpHomogeneousMatrix(), vpVelocityTwistMatrix::vpMatrix, vpVelocityTwistMatrix::vpVelocityTwistMatrix(), vpVelocityTwistMatrix::vpVelocityTwistMatrix(), and vpVelocityTwistMatrix::vpVelocityTwistMatrix().
|
inlinestaticinherited |
Creates a view of the Matrix A. A view shares the same underlying memory as the original array. It can be written into, modifying the original data. However, the array cannot be resized.
When you use this method, it is your responsibility to ensure that the lifespan of the view does not exceed the lifespan of the original array.
| A | the array to view |
Definition at line 324 of file vpArray2D.h.
|
friend |
Definition at line 447 of file vpHomogeneousMatrix.h.
References from_json, and vpHomogeneousMatrix().
Referenced by from_json.
|
Definition at line 1420 of file vpArray2D.h.
References vpArray2D< Type >::colNum, colNum, vpArray2D< Type >::data, data, vpArray2D< Type >::rowNum, rowNum, vpArray2D< Type >::size(), and vpArray2D().
|
Definition at line 1439 of file vpArray2D.h.
References vpArray2D< Type >::colNum, colNum, vpArray2D< Type >::data, data, vpArray2D< Type >::rowNum, rowNum, vpArray2D< Type >::size(), and vpArray2D().
|
friend |
Definition at line 442 of file vpHomogeneousMatrix.h.
References to_json, and vpHomogeneousMatrix().
Referenced by to_json.
|
This function performs generalized matrix multiplication: D = alpha*op(A)*op(B) + beta*op(C), where op(X) is X or X^T. Operation on A, B and C matrices is described by enumeration vpGEMMmethod().
For example, to compute D = alpha*A^T*B^T+beta*C we need to call :
If C is not used, vpGEMM must be called using an empty array null. Thus to compute D = alpha*A^T*B, we have to call:
| vpException::incorrectMatrixSizeError | if the sizes of the matrices do not allow the operations. |
| A | : An array that could be a vpMatrix. |
| B | : An array that could be a vpMatrix. |
| alpha | : A scalar. |
| C | : An array that could be a vpMatrix. |
| beta | : A scalar. |
| D | : The resulting array that could be a vpMatrix. |
| ops | : A scalar describing operation applied on the matrices. Possible values are the one defined in vpGEMMmethod(): VP_GEMM_A_T, VP_GEMM_B_T, VP_GEMM_C_T. |
Definition at line 414 of file vpGEMM.h.
References vpException::functionNotImplementedError, and vpArray2D().
|
Enumeration of the operations applied on matrices in vpGEMM() function.
Operations are :
|
protectedinherited |
Number of columns in the array.
Definition at line 1203 of file vpArray2D.h.
Referenced by vpMatrix::AAt(), vpMatrix::AtA(), vpMatrix::choleskyByLapack(), vpMatrix::choleskyByOpenCV(), vpColVector::clear(), vpMatrix::clear(), vpRowVector::clear(), vpMatrix::dampedInverse(), vpMatrix::detByLU(), vpMatrix::detByLUEigen3(), vpMatrix::detByLULapack(), vpMatrix::detByLUOpenCV(), vpMatrix::diag(), vpMatrix::eigenValues(), vpMatrix::eigenValues(), vpMatrix::expm(), vpRowVector::extract(), vpMatrix::eye(), vpMatrix::getDiag(), vpMatrix::getRow(), vpMatrix::getRow(), vpColVector::hadamard(), vpMatrix::hadamard(), vpRowVector::hadamard(), vpMatrix::infinityNorm(), vpSubColVector::init(), vpSubMatrix::init(), vpSubRowVector::init(), vpMatrix::insert(), vpRowVector::insert(), vpMatrix::inverseByCholeskyLapack(), vpMatrix::inverseByCholeskyOpenCV(), vpMatrix::inverseByLU(), vpMatrix::inverseByLUEigen3(), vpMatrix::inverseByLULapack(), vpMatrix::inverseByLUOpenCV(), vpMatrix::inverseByQRLapack(), vpMatrix::inverseTriangular(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpRotationMatrix::operator*(), vpRotationMatrix::operator*(), vpRowVector::operator*(), vpRowVector::operator*(), vpRowVector::operator*(), vpMatrix::operator*=(), vpRotationMatrix::operator*=(), vpRowVector::operator*=(), vpRowVector::operator+(), vpMatrix::operator+=(), vpMatrix::operator+=(), vpRowVector::operator+=(), vpMatrix::operator,(), vpRowVector::operator,(), vpRowVector::operator-(), vpRowVector::operator-(), vpMatrix::operator-=(), vpMatrix::operator-=(), vpRowVector::operator-=(), vpMatrix::operator/(), vpRowVector::operator/(), vpMatrix::operator/=(), vpRowVector::operator/=(), vpColVector::operator<<(), vpMatrix::operator<<(), vpMatrix::operator=(), vpRowVector::operator=(), vpRowVector::operator=(), vpRowVector::operator=(), vpSubMatrix::operator=(), vpSubMatrix::operator=(), vpSubMatrix::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), operator==(), operator==(), vpColVector::operator==(), vpRowVector::operator==(), vpMatrix::qr(), vpRowVector::reshape(), vpMatrix::setIdentity(), vpMatrix::solveByQR(), vpMatrix::solveByQR(), vpMatrix::solveBySVD(), vpMatrix::stack(), vpMatrix::stack(), vpMatrix::stack(), vpRowVector::stack(), vpMatrix::stackColumns(), vpMatrix::stackColumns(), vpMatrix::stackRows(), vpMatrix::stackRows(), vpMatrix::sum(), vpRowVector::sum(), vpMatrix::sumSquare(), vpRowVector::sumSquare(), vpMatrix::svdEigen3(), vpMatrix::svdLapack(), vpRowVector::t(), and vpMatrix::transpose().
|
inherited |
Address of the first element of the data array.
Definition at line 149 of file vpArray2D.h.
Referenced by vpMatrix::AAt(), vpMatrix::AtA(), vpHomogeneousMatrix::buildFrom(), vpHomogeneousMatrix::buildFrom(), vpQuaternionVector::buildFrom(), vpQuaternionVector::buildFrom(), vpRxyzVector::buildFrom(), vpRxyzVector::buildFrom(), vpRxyzVector::buildFrom(), vpRzyxVector::buildFrom(), vpRzyxVector::buildFrom(), vpRzyxVector::buildFrom(), vpRzyzVector::buildFrom(), vpRzyzVector::buildFrom(), vpRzyzVector::buildFrom(), vpThetaUVector::buildFrom(), vpThetaUVector::buildFrom(), vpThetaUVector::buildFrom(), vpThetaUVector::buildFrom(), vpThetaUVector::buildFrom(), vpSubColVector::checkParentStatus(), vpSubMatrix::checkParentStatus(), vpSubRowVector::checkParentStatus(), vpColVector::clear(), vpMatrix::clear(), vpRowVector::clear(), vpHomogeneousMatrix::convert(), vpHomogeneousMatrix::convert(), vpMatrix::detByLUEigen3(), vpMatrix::detByLUOpenCV(), vpMatrix::expm(), vpThetaUVector::extract(), vpMatrix::frobeniusNorm(), vpMatrix::getRow(), vpThetaUVector::getTheta(), vpThetaUVector::getU(), vpColVector::hadamard(), vpMatrix::hadamard(), vpRowVector::hadamard(), vpSubColVector::init(), vpSubMatrix::init(), vpSubRowVector::init(), vpColVector::insert(), vpMatrix::insert(), vpMatrix::inverseByCholeskyOpenCV(), vpMatrix::inverseByLUEigen3(), vpMatrix::inverseByLUOpenCV(), vpHomogeneousMatrix::isValid(), vpColVector::operator*(), vpHomography::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpRowVector::operator*(), vpRowVector::operator*(), vpTranslationVector::operator*(), vpColVector::operator,(), vpHomogeneousMatrix::operator,(), vpRotationMatrix::operator,(), vpRotationVector::operator,(), vpRowVector::operator,(), vpTranslationVector::operator,(), vpColVector::operator-(), vpRowVector::operator-(), vpTranslationVector::operator-(), vpColVector::operator/(), vpHomography::operator/(), vpRowVector::operator/(), vpTranslationVector::operator/(), vpHomography::operator/=(), vpColVector::operator<<(), vpHomogeneousMatrix::operator<<(), vpRotationMatrix::operator<<(), vpRotationVector::operator<<(), vpRowVector::operator<<(), vpTranslationVector::operator<<(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpQuaternionVector::operator=(), vpQuaternionVector::operator=(), vpRotationMatrix::operator=(), vpRotationVector::operator=(), vpRowVector::operator=(), vpRowVector::operator=(), vpRowVector::operator=(), vpRxyzVector::operator=(), vpRxyzVector::operator=(), vpRxyzVector::operator=(), vpRzyxVector::operator=(), vpRzyxVector::operator=(), vpRzyxVector::operator=(), vpRzyzVector::operator=(), vpRzyzVector::operator=(), vpRzyzVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpThetaUVector::operator=(), vpThetaUVector::operator=(), vpThetaUVector::operator=(), vpTranslationVector::operator=(), vpTranslationVector::operator=(), vpTranslationVector::operator=(), vpTranslationVector::operator=(), operator==(), operator==(), vpColVector::operator==(), vpColVector::operator==(), vpRowVector::operator==(), vpColVector::operator[](), vpColVector::operator[](), vpPoseVector::operator[](), vpPoseVector::operator[](), vpRotationVector::operator[](), vpRotationVector::operator[](), vpRowVector::operator[](), vpRowVector::operator[](), vpTranslationVector::operator[](), vpTranslationVector::operator[](), vpRotationMatrix::orthogonalize(), vpMatrix::qr(), vpColVector::reshape(), vpRowVector::reshape(), vpQuaternionVector::set(), vpMatrix::stack(), vpMatrix::stack(), vpMatrix::stackRows(), vpColVector::sum(), vpColVector::sumSquare(), vpMatrix::svdEigen3(), vpMatrix::svdLapack(), vpMatrix::svdOpenCV(), vpColVector::t(), vpPoseVector::t(), vpRotationVector::t(), vpRowVector::t(), vpTranslationVector::t(), vpColVector::toStdVector(), vpPoseVector::toStdVector(), vpRotationVector::toStdVector(), vpRowVector::toStdVector(), vpMatrix::transpose(), vpColVector::view(), vpMatrix::view(), vpColVector::vpColVector(), vpHomogeneousMatrix::vpHomogeneousMatrix(), vpQuaternionVector::w(), vpQuaternionVector::w(), vpQuaternionVector::x(), vpQuaternionVector::x(), vpQuaternionVector::y(), vpQuaternionVector::y(), vpQuaternionVector::z(), vpQuaternionVector::z(), vpSubColVector::~vpSubColVector(), vpSubMatrix::~vpSubMatrix(), and vpSubRowVector::~vpSubRowVector().
|
protectedinherited |
Current array size (rowNum * colNum).
Definition at line 1207 of file vpArray2D.h.
Referenced by vpColVector::clear(), vpMatrix::clear(), vpRowVector::clear(), vpMatrix::frobeniusNorm(), vpColVector::hadamard(), vpMatrix::hadamard(), vpRowVector::hadamard(), vpMatrix::inducedL2Norm(), vpSubColVector::init(), vpSubMatrix::init(), vpSubRowVector::init(), vpRotationVector::operator*(), vpTranslationVector::operator*(), vpTranslationVector::operator-(), vpTranslationVector::operator/(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpRotationMatrix::operator=(), vpRxyzVector::operator=(), vpRzyxVector::operator=(), vpRzyzVector::operator=(), vpThetaUVector::operator=(), vpColVector::reshape(), vpRowVector::reshape(), and vpRotationVector::t().
|
protectedinherited |
Whether this array owns the memory it points to.
Definition at line 1209 of file vpArray2D.h.
Referenced by vpColVector::clear(), and vpRowVector::clear().
|
protectedinherited |
Whether this array owns the row pointers.
Definition at line 1211 of file vpArray2D.h.
|
static |
Definition at line 407 of file vpHomogeneousMatrix.h.
|
protected |
Definition at line 436 of file vpHomogeneousMatrix.h.
Referenced by operator,(), operator<<(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), vpHomogeneousMatrix(), and vpHomogeneousMatrix().
|
protectedinherited |
Number of rows in the array.
Definition at line 1201 of file vpArray2D.h.
Referenced by vpMatrix::AAt(), vpMatrix::AtA(), vpMatrix::choleskyByLapack(), vpMatrix::choleskyByOpenCV(), vpColVector::clear(), vpMatrix::clear(), vpRowVector::clear(), vpMatrix::detByLU(), vpMatrix::detByLUEigen3(), vpMatrix::detByLULapack(), vpMatrix::detByLUOpenCV(), vpMatrix::diag(), vpMatrix::eigenValues(), vpMatrix::eigenValues(), vpMatrix::expm(), vpColVector::extract(), vpMatrix::eye(), vpMatrix::getCol(), vpMatrix::getDiag(), vpMatrix::getRow(), vpColVector::hadamard(), vpMatrix::hadamard(), vpRowVector::hadamard(), vpColVector::infinityNorm(), vpMatrix::infinityNorm(), vpSubColVector::init(), vpSubMatrix::init(), vpSubRowVector::init(), vpMatrix::insert(), vpMatrix::inverseByCholeskyLapack(), vpMatrix::inverseByCholeskyOpenCV(), vpMatrix::inverseByLU(), vpMatrix::inverseByLUEigen3(), vpMatrix::inverseByLULapack(), vpMatrix::inverseByLUOpenCV(), vpMatrix::inverseByQRLapack(), vpMatrix::inverseTriangular(), vpColVector::operator*(), vpColVector::operator*(), vpColVector::operator*(), vpColVector::operator*(), vpHomogeneousMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpRotationMatrix::operator*(), vpRotationMatrix::operator*(), vpTranslationVector::operator*(), vpColVector::operator*=(), vpMatrix::operator*=(), vpRotationMatrix::operator*=(), vpTranslationVector::operator*=(), vpColVector::operator+(), vpColVector::operator+=(), vpColVector::operator+=(), vpMatrix::operator+=(), vpMatrix::operator+=(), vpColVector::operator,(), vpColVector::operator-(), vpColVector::operator-(), vpColVector::operator-=(), vpColVector::operator-=(), vpMatrix::operator-=(), vpMatrix::operator-=(), vpColVector::operator/(), vpMatrix::operator/(), vpColVector::operator/=(), vpMatrix::operator/=(), vpTranslationVector::operator/=(), vpColVector::operator<<(), vpMatrix::operator<<(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpColVector::operator=(), vpMatrix::operator=(), vpMatrix::operator=(), vpRowVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubColVector::operator=(), vpSubMatrix::operator=(), vpSubMatrix::operator=(), vpSubMatrix::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpSubRowVector::operator=(), vpTranslationVector::operator=(), vpTranslationVector::operator=(), operator==(), operator==(), vpColVector::operator==(), vpColVector::operator==(), vpRowVector::operator==(), vpMatrix::qr(), vpColVector::reshape(), vpMatrix::setIdentity(), vpColVector::stack(), vpMatrix::stack(), vpMatrix::stack(), vpMatrix::stack(), vpMatrix::stackColumns(), vpMatrix::stackColumns(), vpMatrix::stackRows(), vpMatrix::stackRows(), vpColVector::sum(), vpMatrix::sum(), vpColVector::sumSquare(), vpMatrix::sumSquare(), vpRotationVector::sumSquare(), vpTranslationVector::sumSquare(), vpMatrix::svdEigen3(), vpMatrix::svdLapack(), vpColVector::t(), vpPoseVector::t(), vpTranslationVector::t(), and vpMatrix::transpose().
|
protectedinherited |
Address of the first element of each rows.
Definition at line 1205 of file vpArray2D.h.
Referenced by vpMatrix::AAt(), vpColVector::clear(), vpMatrix::clear(), vpRowVector::clear(), vpMatrix::infinityNorm(), vpColVector::init(), vpMatrix::init(), vpRowVector::init(), vpSubColVector::init(), vpSubMatrix::init(), vpSubRowVector::init(), vpForceTwistMatrix::operator*(), vpForceTwistMatrix::operator*(), vpForceTwistMatrix::operator*(), vpHomogeneousMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpMatrix::operator*(), vpRotationMatrix::operator*(), vpRotationMatrix::operator*(), vpRotationMatrix::operator*(), vpRotationMatrix::operator*(), vpVelocityTwistMatrix::operator*(), vpVelocityTwistMatrix::operator*(), vpVelocityTwistMatrix::operator*(), vpMatrix::operator*=(), vpRotationMatrix::operator*=(), vpMatrix::operator+=(), vpMatrix::operator+=(), vpMatrix::operator,(), vpMatrix::operator-=(), vpMatrix::operator-=(), vpMatrix::operator/(), vpMatrix::operator/=(), vpColVector::operator<<(), vpMatrix::operator<<(), vpMatrix::operator<<(), vpForceTwistMatrix::operator=(), vpHomogeneousMatrix::operator=(), vpMatrix::operator=(), vpRotationMatrix::operator=(), vpRowVector::operator=(), vpSubMatrix::operator=(), vpSubMatrix::operator=(), vpSubMatrix::operator=(), vpVelocityTwistMatrix::operator=(), vpMatrix::stack(), vpMatrix::stackColumns(), vpMatrix::sum(), vpRowVector::sum(), vpMatrix::sumSquare(), vpRotationVector::sumSquare(), vpRowVector::sumSquare(), and vpTranslationVector::sumSquare().