OpenGV
A library for solving calibrated central and non-central geometric vision problems
CentralRelativeAdapter.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 
38 #ifndef OPENGV_RELATIVE_POSE_CENTRALRELATIVEADAPTER_HPP_
39 #define OPENGV_RELATIVE_POSE_CENTRALRELATIVEADAPTER_HPP_
40 
41 #include <stdlib.h>
42 #include <vector>
43 #include <opengv/types.hpp>
45 
49 namespace opengv
50 {
54 namespace relative_pose
55 {
56 
63 {
64 protected:
67 
68 public:
69  EIGEN_MAKE_ALIGNED_OPERATOR_NEW
70 
75  const bearingVectors_t & bearingVectors1,
76  const bearingVectors_t & bearingVectors2 );
81  const bearingVectors_t & bearingVectors1,
82  const bearingVectors_t & bearingVectors2,
83  const rotation_t & R12 );
88  const bearingVectors_t & bearingVectors1,
89  const bearingVectors_t & bearingVectors2,
90  const translation_t & t12,
91  const rotation_t & R12 );
95  virtual ~CentralRelativeAdapter();
96 
97  //Access of correspondences
98 
100  virtual bearingVector_t getBearingVector1( size_t index ) const;
102  virtual bearingVector_t getBearingVector2( size_t index ) const;
104  virtual double getWeight( size_t index ) const;
106  virtual translation_t getCamOffset1( size_t index ) const;
108  virtual rotation_t getCamRotation1( size_t index ) const;
110  virtual translation_t getCamOffset2( size_t index ) const;
112  virtual rotation_t getCamRotation2( size_t index ) const;
114  virtual size_t getNumberCorrespondences() const;
115 
116 protected:
121 };
122 
123 }
124 }
125 
126 #endif /* OPENGV_RELATIVE_POSE_CENTRALRELATIVEADAPTER_HPP_ */
std::vector< bearingVector_t, Eigen::aligned_allocator< bearingVector_t > > bearingVectors_t
Definition: types.hpp:59
Definition: CentralRelativeAdapter.hpp:62
The namespace of this library.
Definition: AbsoluteAdapterBase.hpp:47
virtual bearingVector_t getBearingVector1(size_t index) const
Adapter-class for passing bearing-vector correspondences to the relative-pose algorithms.
virtual rotation_t getCamRotation2(size_t index) const
virtual size_t getNumberCorrespondences() const
virtual translation_t getCamOffset1(size_t index) const
const bearingVectors_t & _bearingVectors2
Definition: CentralRelativeAdapter.hpp:120
opengv::rotation_t _R12
Definition: RelativeAdapterBase.hpp:188
const bearingVectors_t & _bearingVectors1
Definition: CentralRelativeAdapter.hpp:118
Eigen::Vector3d translation_t
Definition: types.hpp:63
A collection of variables used in geometric vision for the computation of calibrated absolute and rel...
EIGEN_MAKE_ALIGNED_OPERATOR_NEW CentralRelativeAdapter(const bearingVectors_t &bearingVectors1, const bearingVectors_t &bearingVectors2)
Constructor. See protected class-members to understand parameters.
Eigen::Matrix3d rotation_t
Definition: types.hpp:71
virtual double getWeight(size_t index) const
opengv::translation_t _t12
Definition: RelativeAdapterBase.hpp:178
Definition: RelativeAdapterBase.hpp:63
virtual rotation_t getCamRotation1(size_t index) const
Eigen::Vector3d bearingVector_t
Definition: types.hpp:55
virtual translation_t getCamOffset2(size_t index) const
virtual bearingVector_t getBearingVector2(size_t index) const