File size: 9,427 Bytes
7b7496d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 | // Copyright (c) 2022, ETH Zurich and UNC Chapel Hill.
// All rights reserved.
//
// Redistribution and use in source and binary forms, with or without
// modification, are permitted provided that the following conditions are met:
//
// * Redistributions of source code must retain the above copyright
// notice, this list of conditions and the following disclaimer.
//
// * Redistributions in binary form must reproduce the above copyright
// notice, this list of conditions and the following disclaimer in the
// documentation and/or other materials provided with the distribution.
//
// * Neither the name of ETH Zurich and UNC Chapel Hill nor the names of
// its contributors may be used to endorse or promote products derived
// from this software without specific prior written permission.
//
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
// AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
// IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
// ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE
// LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
// CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
// SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
// INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
// CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.
//
// Author: Johannes L. Schoenberger (jsch-at-demuc-dot-de)
#ifndef COLMAP_SRC_OPTIM_LORANSAC_H_
#define COLMAP_SRC_OPTIM_LORANSAC_H_
#include <cfloat>
#include <random>
#include <stdexcept>
#include <vector>
#include "optim/random_sampler.h"
#include "optim/ransac.h"
#include "optim/support_measurement.h"
#include "util/alignment.h"
#include "util/logging.h"
namespace colmap {
// Implementation of LO-RANSAC (Locally Optimized RANSAC).
//
// "Locally Optimized RANSAC" Ondrej Chum, Jiri Matas, Josef Kittler, DAGM 2003.
template <typename Estimator, typename LocalEstimator,
typename SupportMeasurer = InlierSupportMeasurer,
typename Sampler = RandomSampler>
class LORANSAC : public RANSAC<Estimator, SupportMeasurer, Sampler> {
public:
using typename RANSAC<Estimator, SupportMeasurer, Sampler>::Report;
explicit LORANSAC(const RANSACOptions& options);
// Robustly estimate model with RANSAC (RANdom SAmple Consensus).
//
// @param X Independent variables.
// @param Y Dependent variables.
//
// @return The report with the results of the estimation.
Report Estimate(const std::vector<typename Estimator::X_t>& X,
const std::vector<typename Estimator::Y_t>& Y);
// Objects used in RANSAC procedure.
using RANSAC<Estimator, SupportMeasurer, Sampler>::estimator;
LocalEstimator local_estimator;
using RANSAC<Estimator, SupportMeasurer, Sampler>::sampler;
using RANSAC<Estimator, SupportMeasurer, Sampler>::support_measurer;
private:
using RANSAC<Estimator, SupportMeasurer, Sampler>::options_;
};
////////////////////////////////////////////////////////////////////////////////
// Implementation
////////////////////////////////////////////////////////////////////////////////
template <typename Estimator, typename LocalEstimator, typename SupportMeasurer,
typename Sampler>
LORANSAC<Estimator, LocalEstimator, SupportMeasurer, Sampler>::LORANSAC(
const RANSACOptions& options)
: RANSAC<Estimator, SupportMeasurer, Sampler>(options) {}
template <typename Estimator, typename LocalEstimator, typename SupportMeasurer,
typename Sampler>
typename LORANSAC<Estimator, LocalEstimator, SupportMeasurer, Sampler>::Report
LORANSAC<Estimator, LocalEstimator, SupportMeasurer, Sampler>::Estimate(
const std::vector<typename Estimator::X_t>& X,
const std::vector<typename Estimator::Y_t>& Y) {
CHECK_EQ(X.size(), Y.size());
const size_t num_samples = X.size();
typename RANSAC<Estimator, SupportMeasurer, Sampler>::Report report;
report.success = false;
report.num_trials = 0;
if (num_samples < Estimator::kMinNumSamples) {
return report;
}
typename SupportMeasurer::Support best_support;
typename Estimator::M_t best_model;
bool best_model_is_local = false;
bool abort = false;
const double max_residual = options_.max_error * options_.max_error;
std::vector<double> residuals;
std::vector<double> best_local_residuals;
std::vector<typename LocalEstimator::X_t> X_inlier;
std::vector<typename LocalEstimator::Y_t> Y_inlier;
std::vector<typename Estimator::X_t> X_rand(Estimator::kMinNumSamples);
std::vector<typename Estimator::Y_t> Y_rand(Estimator::kMinNumSamples);
sampler.Initialize(num_samples);
size_t max_num_trials = options_.max_num_trials;
max_num_trials = std::min<size_t>(max_num_trials, sampler.MaxNumSamples());
size_t dyn_max_num_trials = max_num_trials;
for (report.num_trials = 0; report.num_trials < max_num_trials;
++report.num_trials) {
if (abort) {
report.num_trials += 1;
break;
}
sampler.SampleXY(X, Y, &X_rand, &Y_rand);
// Estimate model for current subset.
const std::vector<typename Estimator::M_t> sample_models =
estimator.Estimate(X_rand, Y_rand);
// Iterate through all estimated models
for (const auto& sample_model : sample_models) {
estimator.Residuals(X, Y, sample_model, &residuals);
CHECK_EQ(residuals.size(), num_samples);
const auto support = support_measurer.Evaluate(residuals, max_residual);
// Do local optimization if better than all previous subsets.
if (support_measurer.Compare(support, best_support)) {
best_support = support;
best_model = sample_model;
best_model_is_local = false;
// Estimate locally optimized model from inliers.
if (support.num_inliers > Estimator::kMinNumSamples &&
support.num_inliers >= LocalEstimator::kMinNumSamples) {
// Recursive local optimization to expand inlier set.
const size_t kMaxNumLocalTrials = 10;
for (size_t local_num_trials = 0;
local_num_trials < kMaxNumLocalTrials; ++local_num_trials) {
X_inlier.clear();
Y_inlier.clear();
X_inlier.reserve(num_samples);
Y_inlier.reserve(num_samples);
for (size_t i = 0; i < residuals.size(); ++i) {
if (residuals[i] <= max_residual) {
X_inlier.push_back(X[i]);
Y_inlier.push_back(Y[i]);
}
}
const std::vector<typename LocalEstimator::M_t> local_models =
local_estimator.Estimate(X_inlier, Y_inlier);
const size_t prev_best_num_inliers = best_support.num_inliers;
for (const auto& local_model : local_models) {
local_estimator.Residuals(X, Y, local_model, &residuals);
CHECK_EQ(residuals.size(), num_samples);
const auto local_support =
support_measurer.Evaluate(residuals, max_residual);
// Check if locally optimized model is better.
if (support_measurer.Compare(local_support, best_support)) {
best_support = local_support;
best_model = local_model;
best_model_is_local = true;
std::swap(residuals, best_local_residuals);
}
}
// Only continue recursive local optimization, if the inlier set
// size increased and we thus have a chance to further improve.
if (best_support.num_inliers <= prev_best_num_inliers) {
break;
}
// Swap back the residuals, so we can extract the best inlier
// set in the next recursion of local optimization.
std::swap(residuals, best_local_residuals);
}
}
dyn_max_num_trials =
RANSAC<Estimator, SupportMeasurer, Sampler>::ComputeNumTrials(
best_support.num_inliers, num_samples, options_.confidence,
options_.dyn_num_trials_multiplier);
}
if (report.num_trials >= dyn_max_num_trials &&
report.num_trials >= options_.min_num_trials) {
abort = true;
break;
}
}
}
report.support = best_support;
report.model = best_model;
// No valid model was found
if (report.support.num_inliers < estimator.kMinNumSamples) {
return report;
}
report.success = true;
// Determine inlier mask. Note that this calculates the residuals for the
// best model twice, but saves to copy and fill the inlier mask for each
// evaluated model. Some benchmarking revealed that this approach is faster.
if (best_model_is_local) {
local_estimator.Residuals(X, Y, report.model, &residuals);
} else {
estimator.Residuals(X, Y, report.model, &residuals);
}
CHECK_EQ(residuals.size(), num_samples);
report.inlier_mask.resize(num_samples);
for (size_t i = 0; i < residuals.size(); ++i) {
report.inlier_mask[i] = residuals[i] <= max_residual;
}
return report;
}
} // namespace colmap
#endif // COLMAP_SRC_OPTIM_LORANSAC_H_
|