OpenGV
A library for solving calibrated central and non-central geometric vision problems
MANoncentralRelativeMulti.hpp
Go to the documentation of this file.
1 /******************************************************************************
2  * Author: Laurent Kneip *
3  * Contact: kneip.laurent@gmail.com *
4  * License: Copyright (c) 2013 Laurent Kneip, ANU. All rights reserved. *
5  * *
6  * Redistribution and use in source and binary forms, with or without *
7  * modification, are permitted provided that the following conditions *
8  * are met: *
9  * * Redistributions of source code must retain the above copyright *
10  * notice, this list of conditions and the following disclaimer. *
11  * * Redistributions in binary form must reproduce the above copyright *
12  * notice, this list of conditions and the following disclaimer in the *
13  * documentation and/or other materials provided with the distribution. *
14  * * Neither the name of ANU nor the names of its contributors may be *
15  * used to endorse or promote products derived from this software without *
16  * specific prior written permission. *
17  * *
18  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"*
19  * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE *
20  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE *
21  * ARE DISCLAIMED. IN NO EVENT SHALL ANU OR THE CONTRIBUTORS BE LIABLE *
22  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL *
23  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR *
24  * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER *
25  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT *
26  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY *
27  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF *
28  * SUCH DAMAGE. *
29  ******************************************************************************/
30 
39 #ifndef OPENGV_RELATIVE_POSE_MANONCENTRALRELATIVEMULTI_HPP_
40 #define OPENGV_RELATIVE_POSE_MANONCENTRALRELATIVEMULTI_HPP_
41 
42 #include <stdlib.h>
43 #include <vector>
44 #include <opengv/types.hpp>
46 
50 namespace opengv
51 {
55 namespace relative_pose
56 {
57 
67 {
68 protected:
71 
72 public:
73  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
74 
79  const std::vector<double*> & bearingVectors1,
80  const std::vector<double*> & bearingVectors2,
81  const double * camOffsets,
82  const std::vector<int> & numberBearingVectors );
87 
88  //camera-pair-wise access of correspondences
89 
92  size_t pairIndex, size_t correspondenceIndex ) const;
95  size_t pairIndex, size_t correspondenceIndex ) const;
97  virtual double getWeight( size_t camIndex, size_t correspondenceIndex ) const;
99  virtual translation_t getCamOffset( size_t pairIndex ) const;
101  virtual rotation_t getCamRotation( size_t pairIndex ) const;
103  virtual size_t getNumberCorrespondences( size_t pairIndex ) const;
105  virtual size_t getNumberPairs() const;
106 
107  //Conversion to and from serialized indices
108 
110  virtual std::vector<int> convertMultiIndices(
111  const std::vector<std::vector<int> > & multiIndices ) const;
113  virtual int convertMultiIndex(
114  size_t camIndex, size_t correspondenceIndex ) const;
116  virtual int multiPairIndex( size_t index ) const;
118  virtual int multiCorrespondenceIndex( size_t index ) const;
119 
120 protected:
122  std::vector<double *> _bearingVectors1;
123 
125  std::vector<double *> _bearingVectors2;
126 
128  const double * _camOffsets;
129 
131  std::vector<int> _numberBearingVectors;
132 
134  std::vector<int> multiPairIndices;
136  std::vector<int> multiKeypointIndices;
138  std::vector<int> singleIndexOffsets;
139 };
140 
141 }
142 }
143 
144 #endif /* OPENGV_RELATIVE_POSE_MANONCENTRALRELATIVEMULTI_HPP_ */
virtual translation_t getCamOffset(size_t pairIndex) const
The namespace of this library.
Definition: AbsoluteAdapterBase.hpp:47
std::vector< int > multiPairIndices
Definition: MANoncentralRelativeMulti.hpp:134
virtual int convertMultiIndex(size_t camIndex, size_t correspondenceIndex) const
Definition: MANoncentralRelativeMulti.hpp:66
Adapter-class for passing bearing-vector correspondences to the relative-pose algorithms. Intended for multi-central-viewpoint or relative non-central-viewpoint problems. Access of correspondences etc. via an additional pair-index referring to the pairs of cameras.
std::vector< int > _numberBearingVectors
Definition: MANoncentralRelativeMulti.hpp:131
EIGEN_MAKE_ALIGNED_OPERATOR_NEW MANoncentralRelativeMulti(const std::vector< double * > &bearingVectors1, const std::vector< double * > &bearingVectors2, const double *camOffsets, const std::vector< int > &numberBearingVectors)
Constructor. See protected class-members to understand parameters.
std::vector< double * > _bearingVectors2
Definition: MANoncentralRelativeMulti.hpp:125
opengv::rotation_t _R12
Definition: RelativeAdapterBase.hpp:188
Eigen::Vector3d translation_t
Definition: types.hpp:63
A collection of variables used in geometric vision for the computation of calibrated absolute and rel...
virtual bearingVector_t getBearingVector2(size_t pairIndex, size_t correspondenceIndex) const
virtual int multiCorrespondenceIndex(size_t index) const
Eigen::Matrix3d rotation_t
Definition: types.hpp:71
std::vector< double * > _bearingVectors1
Definition: MANoncentralRelativeMulti.hpp:122
virtual double getWeight(size_t camIndex, size_t correspondenceIndex) const
opengv::translation_t _t12
Definition: RelativeAdapterBase.hpp:178
virtual int multiPairIndex(size_t index) const
virtual std::vector< int > convertMultiIndices(const std::vector< std::vector< int > > &multiIndices) const
Eigen::Vector3d bearingVector_t
Definition: types.hpp:55
std::vector< int > multiKeypointIndices
Definition: MANoncentralRelativeMulti.hpp:136
std::vector< int > singleIndexOffsets
Definition: MANoncentralRelativeMulti.hpp:138
const double * _camOffsets
Definition: MANoncentralRelativeMulti.hpp:128
virtual bearingVector_t getBearingVector1(size_t pairIndex, size_t correspondenceIndex) const
virtual rotation_t getCamRotation(size_t pairIndex) const
virtual size_t getNumberCorrespondences() const
Definition: RelativeMultiAdapterBase.hpp:210
Definition: RelativeMultiAdapterBase.hpp:67