OpenGV
A library for solving calibrated central and non-central geometric vision problems
NoncentralAbsoluteMultiAdapter.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_ABSOLUTE_POSE_NONCENTRALABSOLUTEMULTIADAPTER_HPP_
40 #define OPENGV_ABSOLUTE_POSE_NONCENTRALABSOLUTEMULTIADAPTER_HPP_
41 
42 #include <memory>
43 #include <stdlib.h>
44 #include <vector>
45 #include <opengv/types.hpp>
47 
51 namespace opengv
52 {
56 namespace absolute_pose
57 {
58 
66 {
67 protected:
70 
71 public:
72  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
73 
78  std::vector<std::shared_ptr<bearingVectors_t> > bearingVectors,
79  std::vector<std::shared_ptr<points_t> > points,
80  const translations_t & camOffsets,
81  const rotations_t & camRotations );
86 
87  //camera-wise access of correspondences
88 
90  virtual point_t getPoint(
91  size_t frameIndex, size_t correspondenceIndex ) const;
94  size_t frameIndex, size_t correspondenceIndex ) const;
96  virtual double getWeight( size_t frameIndex, size_t correspondenceIndex ) const;
98  virtual translation_t getMultiCamOffset( size_t frameIndex ) const;
100  virtual rotation_t getMultiCamRotation( size_t frameIndex ) const;
102  virtual size_t getNumberCorrespondences( size_t frameIndex ) const;
104  virtual size_t getNumberFrames() const;
105 
106  //Conversion to and from serialized indices
107 
109  virtual std::vector<int> convertMultiIndices(
110  const std::vector<std::vector<int> > & multiIndices ) const;
112  virtual int convertMultiIndex(
113  size_t frameIndex, size_t correspondenceIndex ) const;
115  virtual int multiFrameIndex( size_t index ) const;
117  virtual int multiCorrespondenceIndex( size_t index ) const;
118 
119 protected:
122  std::vector<std::shared_ptr<bearingVectors_t> > _bearingVectors;
125  std::vector<std::shared_ptr<points_t> > _points;
126 
135 
137  std::vector<int> multiFrameIndices;
139  std::vector<int> multiKeypointIndices;
141  std::vector<int> singleIndexOffsets;
142 };
143 
144 }
145 };
146 
147 #endif /* OPENGV_ABSOLUTE_POSE_NONCENTRALABSOLUTEADAPTER_HPP_ */
opengv::translation_t _t
Definition: AbsoluteAdapterBase.hpp:164
virtual point_t getPoint(size_t frameIndex, size_t correspondenceIndex) const
virtual rotation_t getMultiCamRotation(size_t frameIndex) const
Definition: NoncentralAbsoluteMultiAdapter.hpp:65
The namespace of this library.
Definition: AbsoluteAdapterBase.hpp:47
virtual int convertMultiIndex(size_t frameIndex, size_t correspondenceIndex) const
Adapter-class for passing bearing-vector-to-point correspondences to the absolute-pose algorithms...
virtual double getWeight(size_t frameIndex, size_t correspondenceIndex) const
opengv::rotation_t _R
Definition: AbsoluteAdapterBase.hpp:174
EIGEN_MAKE_ALIGNED_OPERATOR_NEW NoncentralAbsoluteMultiAdapter(std::vector< std::shared_ptr< bearingVectors_t > > bearingVectors, std::vector< std::shared_ptr< points_t > > points, const translations_t &camOffsets, const rotations_t &camRotations)
Constructor. See protected class-members to understand parameters.
std::vector< int > multiKeypointIndices
Definition: NoncentralAbsoluteMultiAdapter.hpp:139
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 int multiCorrespondenceIndex(size_t index) const
Definition: AbsoluteMultiAdapterBase.hpp:66
virtual translation_t getMultiCamOffset(size_t frameIndex) const
Eigen::Matrix3d rotation_t
Definition: types.hpp:71
virtual size_t getNumberCorrespondences() const
Definition: AbsoluteMultiAdapterBase.hpp:217
std::vector< rotation_t, Eigen::aligned_allocator< rotation_t > > rotations_t
Definition: types.hpp:75
virtual std::vector< int > convertMultiIndices(const std::vector< std::vector< int > > &multiIndices) const
virtual bearingVector_t getBearingVector(size_t frameIndex, size_t correspondenceIndex) const
const translations_t & _camOffsets
Definition: NoncentralAbsoluteMultiAdapter.hpp:130
std::vector< int > singleIndexOffsets
Definition: NoncentralAbsoluteMultiAdapter.hpp:141
const rotations_t & _camRotations
Definition: NoncentralAbsoluteMultiAdapter.hpp:134
Eigen::Vector3d bearingVector_t
Definition: types.hpp:55
std::vector< int > multiFrameIndices
Definition: NoncentralAbsoluteMultiAdapter.hpp:137
std::vector< std::shared_ptr< bearingVectors_t > > _bearingVectors
Definition: NoncentralAbsoluteMultiAdapter.hpp:122
std::vector< std::shared_ptr< points_t > > _points
Definition: NoncentralAbsoluteMultiAdapter.hpp:125
std::vector< translation_t, Eigen::aligned_allocator< translation_t > > translations_t
Definition: types.hpp:67
Eigen::Vector3d point_t
Definition: types.hpp:123
virtual int multiFrameIndex(size_t index) const