OpenGV
A library for solving calibrated central and non-central geometric vision problems
MultiNoncentralAbsolutePoseSacProblem.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_SAC_PROBLEMS_ABSOLUTE_POSE_MULTINONCENTRALABSOLUTEPOSESACPROBLEM_HPP_
40 #define OPENGV_SAC_PROBLEMS_ABSOLUTE_POSE_MULTINONCENTRALABSOLUTEPOSESACPROBLEM_HPP_
41 
43 #include <opengv/types.hpp>
45 
49 namespace opengv
50 {
54 namespace sac_problems
55 {
59 namespace absolute_pose
60 {
61 
69  public sac::MultiSampleConsensusProblem<transformation_t>
70 {
71 public:
76 
77  //This multisacproblem uses either gp3p or p3p for finding the relative pose
78 
83  MultiNoncentralAbsolutePoseSacProblem(adapter_t & adapter, bool asCentral = false) :
84  sac::MultiSampleConsensusProblem<model_t> (),
85  _adapter(adapter),
86  _asCentral(asCentral)
87  {
88  std::vector<int> numberCorrespondences;
89  for(size_t i = 0; i < adapter.getNumberFrames(); i++)
90  numberCorrespondences.push_back(adapter.getNumberCorrespondences(i));
91  setUniformIndices(numberCorrespondences);
92  };
93 
101  adapter_t & adapter,
102  const std::vector<std::vector<int> > & indices,
103  bool asCentral = false ) :
104  sac::MultiSampleConsensusProblem<model_t> (),
105  _adapter(adapter),
106  _asCentral(asCentral)
107  {
108  setIndices(indices);
109  };
110 
115 
119  virtual bool computeModelCoefficients(
120  const std::vector< std::vector<int> > & indices,
121  model_t & outModel) const;
122 
126  virtual void getSelectedDistancesToModel(
127  const model_t & model,
128  const std::vector<std::vector<int> > & indices,
129  std::vector<std::vector<double> > & scores) const;
130 
134  virtual void optimizeModelCoefficients(
135  const std::vector<std::vector<int> > & inliers,
136  const model_t & model,
137  model_t & optimized_model);
138 
142  virtual std::vector<int> getSampleSizes() const;
143 
144 protected:
146  adapter_t & _adapter;
149 };
150 
151 }
152 }
153 }
154 
155 #endif //#ifndef OPENGV_SAC_PROBLEMS_ABSOLUTE_POSE_MULTINONCENTRALABSOLUTEPOSESACPROBLEM_HPP_
virtual size_t getNumberFrames() const =0
Retrieve the number of cameras.
Eigen::Matrix< double, 3, 4 > transformation_t
Definition: types.hpp:82
void setUniformIndices(std::vector< int > N)
Use this method if you want to use all samples.
The namespace of this library.
Definition: AbsoluteAdapterBase.hpp:47
adapter_t & _adapter
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:146
virtual ~MultiNoncentralAbsolutePoseSacProblem()
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:114
Adapter-class for passing bearing-vector-to-point correspondences to the absolute-pose algorithms...
Definition: MultiSampleConsensusProblem.hpp:70
virtual bool computeModelCoefficients(const std::vector< std::vector< int > > &indices, model_t &outModel) const
See parent-class.
transformation_t model_t
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:73
A collection of variables used in geometric vision for the computation of calibrated absolute and rel...
Definition: AbsoluteMultiAdapterBase.hpp:66
virtual size_t getNumberCorrespondences(size_t frameIndex) const =0
Retrieve the number of correspondences for a camera.
Basis-class for Sample-consensus problems. Contains declarations for the three basic functions of a s...
virtual std::vector< int > getSampleSizes() const
See parent-class.
MultiSampleConsensusProblem(bool randomSeed=true)
Contructor.
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:68
MultiNoncentralAbsolutePoseSacProblem(adapter_t &adapter, bool asCentral=false)
Constructor.
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:83
bool _asCentral
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:148
virtual void getSelectedDistancesToModel(const model_t &model, const std::vector< std::vector< int > > &indices, std::vector< std::vector< double > > &scores) const
See parent-class.
void setIndices(const std::vector< std::vector< int > > &indices)
Set the indices_ variable (see member-description).
opengv::absolute_pose::AbsoluteMultiAdapterBase adapter_t
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:75
MultiNoncentralAbsolutePoseSacProblem(adapter_t &adapter, const std::vector< std::vector< int > > &indices, bool asCentral=false)
Constructor.
Definition: MultiNoncentralAbsolutePoseSacProblem.hpp:100
virtual void optimizeModelCoefficients(const std::vector< std::vector< int > > &inliers, const model_t &model, model_t &optimized_model)
See parent-class.