OpenGV
A library for solving calibrated central and non-central geometric vision problems
opengv::relative_pose::NoncentralRelativeMultiAdapter Class Reference

#include <NoncentralRelativeMultiAdapter.hpp>

Inheritance diagram for opengv::relative_pose::NoncentralRelativeMultiAdapter:
opengv::relative_pose::RelativeMultiAdapterBase opengv::relative_pose::RelativeAdapterBase

Public Member Functions

EIGEN_MAKE_ALIGNED_OPERATOR_NEW NoncentralRelativeMultiAdapter (std::vector< std::shared_ptr< bearingVectors_t > > bearingVectors1, std::vector< std::shared_ptr< bearingVectors_t > > bearingVectors2, const translations_t &camOffsets, const rotations_t &camRotations)
 Constructor. See protected class-members to understand parameters.
 
virtual ~NoncentralRelativeMultiAdapter ()
 Destructor.
 
virtual bearingVector_t getBearingVector1 (size_t pairIndex, size_t correspondenceIndex) const
 
virtual bearingVector_t getBearingVector2 (size_t pairIndex, size_t correspondenceIndex) const
 
virtual double getWeight (size_t camIndex, size_t correspondenceIndex) const
 
virtual translation_t getCamOffset (size_t pairIndex) const
 
virtual rotation_t getCamRotation (size_t pairIndex) const
 
virtual size_t getNumberCorrespondences (size_t pairIndex) const
 
virtual size_t getNumberPairs () const
 
virtual std::vector< int > convertMultiIndices (const std::vector< std::vector< int > > &multiIndices) const
 
virtual int convertMultiIndex (size_t camIndex, size_t correspondenceIndex) const
 
virtual int multiPairIndex (size_t index) const
 
virtual int multiCorrespondenceIndex (size_t index) const
 
- Public Member Functions inherited from opengv::relative_pose::RelativeMultiAdapterBase
EIGEN_MAKE_ALIGNED_OPERATOR_NEW RelativeMultiAdapterBase ()
 
 RelativeMultiAdapterBase (const rotation_t &R12)
 
 RelativeMultiAdapterBase (const translation_t &t12, const rotation_t &R12)
 
virtual ~RelativeMultiAdapterBase ()
 
virtual bearingVector_t getBearingVector1 (size_t pairIndex, size_t correspondenceIndex) const =0
 Retrieve the bearing vector of a correspondence in camera 1 of a pair. More...
 
virtual bearingVector_t getBearingVector2 (size_t pairIndex, size_t correspondenceIndex) const =0
 Retrieve the bearing vector of a correspondence in camera 2 of a pair. More...
 
virtual double getWeight (size_t pairIndex, size_t correspondenceIndex) const =0
 Retrieve the weight of a correspondence. The weight is supposed to reflect the quality of a correspondence, and typically is between 0 and 1. More...
 
virtual translation_t getCamOffset (size_t pairIndex) const =0
 Retrieve the position of the cameras of a camera-pair seen from the origin of the viewpoints (assumed to be the same in both viewpoints). More...
 
virtual rotation_t getCamRotation (size_t pairIndex) const =0
 Retrieve the rotation from the cameras of a camera-pair back to the origin of the viewpoints (assumed to be the same in both viewpoints). More...
 
virtual size_t getNumberCorrespondences (size_t pairIndex) const =0
 Retrieve the number of correspondences for a camera-pair. More...
 
virtual size_t getNumberPairs () const =0
 Retrieve the number of camera-pairs. More...
 
virtual std::vector< int > convertMultiIndices (const std::vector< std::vector< int > > &multiIndices) const =0
 Convert an array of (pairIndex,correspondenceIndex)-pairs into an array of serialized indices. More...
 
virtual int convertMultiIndex (size_t pairIndex, size_t correspondenceIndex) const =0
 Convert a (pairIndex,correspondenceIndex)-pair into a serialized index. More...
 
virtual int multiPairIndex (size_t index) const =0
 Get the camera-pair-index corresponding to a serialized index. More...
 
virtual int multiCorrespondenceIndex (size_t index) const =0
 Get the keypoint-index in a camera-pair for a serialized index. More...
 
virtual bearingVector_t getBearingVector1 (size_t index) const
 
virtual bearingVector_t getBearingVector2 (size_t index) const
 
virtual double getWeight (size_t index) const
 
virtual translation_t getCamOffset1 (size_t index) const
 
virtual rotation_t getCamRotation1 (size_t index) const
 
virtual translation_t getCamOffset2 (size_t index) const
 
virtual rotation_t getCamRotation2 (size_t index) const
 
virtual size_t getNumberCorrespondences () const
 
- Public Member Functions inherited from opengv::relative_pose::RelativeAdapterBase
EIGEN_MAKE_ALIGNED_OPERATOR_NEW RelativeAdapterBase ()
 Constructor.
 
 RelativeAdapterBase (const rotation_t &R12)
 Constructor. More...
 
 RelativeAdapterBase (const translation_t &t12, const rotation_t &R12)
 Constructor. More...
 
virtual ~RelativeAdapterBase ()
 Destructor.
 
virtual opengv::bearingVector_t getBearingVector1 (size_t index) const =0
 Retrieve the bearing vector of a correspondence in viewpoint 1. More...
 
virtual opengv::bearingVector_t getBearingVector2 (size_t index) const =0
 Retrieve the bearing vector of a correspondence in viewpoint 2. More...
 
virtual double getWeight (size_t index) const =0
 Retrieve the weight of a correspondence. The weight is supposed to reflect the quality of a correspondence, and typically is between 0 and 1. More...
 
virtual opengv::translation_t getCamOffset1 (size_t index) const =0
 Retrieve the position of a camera of a correspondence in viewpoint 1 seen from the origin of the viewpoint. More...
 
virtual opengv::rotation_t getCamRotation1 (size_t index) const =0
 Retrieve the rotation from a camera of a correspondence in viewpoint 1 to the viewpoint origin. More...
 
virtual opengv::translation_t getCamOffset2 (size_t index) const =0
 Retrieve the position of a camera of a correspondence in viewpoint 2 seen from the origin of the viewpoint. More...
 
virtual opengv::rotation_t getCamRotation2 (size_t index) const =0
 Retrieve the rotation from a camera of a correspondence in viewpoint 2 to the viewpoint origin. More...
 
virtual size_t getNumberCorrespondences () const =0
 Retrieve the number of correspondences. More...
 
opengv::translation_t gett12 () const
 Retrieve the prior or known value for the relative position. More...
 
void sett12 (const opengv::translation_t &t12)
 Set the prior or known value for the relative position. More...
 
opengv::rotation_t getR12 () const
 Retrieve the prior or known value for the relative rotation. More...
 
void setR12 (const opengv::rotation_t &R12)
 Set the prior or known value for the relative rotation. More...
 

Protected Attributes

std::vector< std::shared_ptr< bearingVectors_t > > _bearingVectors1
 
std::vector< std::shared_ptr< bearingVectors_t > > _bearingVectors2
 
const translations_t_camOffsets
 
const rotations_t_camRotations
 
std::vector< int > multiPairIndices
 
std::vector< int > multiKeypointIndices
 
std::vector< int > singleIndexOffsets
 
- Protected Attributes inherited from opengv::relative_pose::RelativeMultiAdapterBase
opengv::translation_t _t12
 
opengv::rotation_t _R12
 
- Protected Attributes inherited from opengv::relative_pose::RelativeAdapterBase
opengv::translation_t _t12
 
opengv::rotation_t _R12
 

Detailed Description

Check the documentation of the parent-class to understand the meaning of a RelativeMultiAdapter. This child-class is for the relative non-central case and holds data in form of references to opengv-types. It is meant to be used for problems involving two non-central viewpoints, but in the special case where correspondences result from two cameras with equal transformation to their two viewpoints.

Member Function Documentation

◆ convertMultiIndex()

virtual int opengv::relative_pose::NoncentralRelativeMultiAdapter::convertMultiIndex ( size_t  camIndex,
size_t  correspondenceIndex 
) const
virtual

◆ convertMultiIndices()

virtual std::vector< int > opengv::relative_pose::NoncentralRelativeMultiAdapter::convertMultiIndices ( const std::vector< std::vector< int > > &  multiIndices) const
virtual

◆ getBearingVector1()

virtual bearingVector_t opengv::relative_pose::NoncentralRelativeMultiAdapter::getBearingVector1 ( size_t  pairIndex,
size_t  correspondenceIndex 
) const
virtual

◆ getBearingVector2()

virtual bearingVector_t opengv::relative_pose::NoncentralRelativeMultiAdapter::getBearingVector2 ( size_t  pairIndex,
size_t  correspondenceIndex 
) const
virtual

◆ getCamOffset()

virtual translation_t opengv::relative_pose::NoncentralRelativeMultiAdapter::getCamOffset ( size_t  pairIndex) const
virtual

◆ getCamRotation()

virtual rotation_t opengv::relative_pose::NoncentralRelativeMultiAdapter::getCamRotation ( size_t  pairIndex) const
virtual

◆ getNumberCorrespondences()

virtual size_t opengv::relative_pose::NoncentralRelativeMultiAdapter::getNumberCorrespondences ( size_t  pairIndex) const
virtual

◆ getNumberPairs()

virtual size_t opengv::relative_pose::NoncentralRelativeMultiAdapter::getNumberPairs ( ) const
virtual

◆ getWeight()

virtual double opengv::relative_pose::NoncentralRelativeMultiAdapter::getWeight ( size_t  camIndex,
size_t  correspondenceIndex 
) const
virtual

◆ multiCorrespondenceIndex()

virtual int opengv::relative_pose::NoncentralRelativeMultiAdapter::multiCorrespondenceIndex ( size_t  index) const
virtual

◆ multiPairIndex()

virtual int opengv::relative_pose::NoncentralRelativeMultiAdapter::multiPairIndex ( size_t  index) const
virtual

Member Data Documentation

◆ _bearingVectors1

std::vector<std::shared_ptr<bearingVectors_t> > opengv::relative_pose::NoncentralRelativeMultiAdapter::_bearingVectors1
protected

References to multiple sets of bearing-vectors (the ones from camera 1 of each pair, and expressed in there).

◆ _bearingVectors2

std::vector<std::shared_ptr<bearingVectors_t> > opengv::relative_pose::NoncentralRelativeMultiAdapter::_bearingVectors2
protected

References to multiple sets of bearing-vectors (the ones from camera 2 of each pair, and expressed in there).

◆ _camOffsets

const translations_t& opengv::relative_pose::NoncentralRelativeMultiAdapter::_camOffsets
protected

Reference to positions of the different cameras seen from the viewpoints.

◆ _camRotations

const rotations_t& opengv::relative_pose::NoncentralRelativeMultiAdapter::_camRotations
protected

Reference to rotations from the different cameras back to the viewpoints.

◆ multiKeypointIndices

std::vector<int> opengv::relative_pose::NoncentralRelativeMultiAdapter::multiKeypointIndices
protected

Initialized in constructor, used for (de)-serialiaztion of indices

◆ multiPairIndices

std::vector<int> opengv::relative_pose::NoncentralRelativeMultiAdapter::multiPairIndices
protected

Initialized in constructor, used for (de)-serialiaztion of indices

◆ singleIndexOffsets

std::vector<int> opengv::relative_pose::NoncentralRelativeMultiAdapter::singleIndexOffsets
protected

Initialized in constructor, used for (de)-serialiaztion of indices


The documentation for this class was generated from the following file: