File size: 11,858 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 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 | // 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_ESTIMATORS_TWO_VIEW_GEOMETRY_H_
#define COLMAP_SRC_ESTIMATORS_TWO_VIEW_GEOMETRY_H_
#include "base/camera.h"
#include "feature/types.h"
#include "optim/ransac.h"
#include "util/alignment.h"
#include "util/logging.h"
namespace colmap {
// Two-view geometry estimator.
struct TwoViewGeometry {
EIGEN_MAKE_ALIGNED_OPERATOR_NEW
// The configuration of the estimated two-view geometry.
enum ConfigurationType {
UNDEFINED = 0,
// Degenerate configuration (e.g., no overlap or not enough inliers).
DEGENERATE = 1,
// Essential matrix.
CALIBRATED = 2,
// Fundamental matrix.
UNCALIBRATED = 3,
// Homography, planar scene with baseline.
PLANAR = 4,
// Homography, pure rotation without baseline.
PANORAMIC = 5,
// Homography, planar or panoramic.
PLANAR_OR_PANORAMIC = 6,
// Watermark, pure 2D translation in image borders.
WATERMARK = 7,
// Multi-model configuration, i.e. the inlier matches result from multiple
// individual, non-degenerate configurations.
MULTIPLE = 8,
};
// Estimation options.
struct Options {
// Minimum number of inliers for non-degenerate two-view geometry.
size_t min_num_inliers = 15;
// In case both cameras are calibrated, the calibration is verified by
// estimating an essential and fundamental matrix and comparing their
// fractions of number of inliers. If the essential matrix produces
// a similar number of inliers (`min_E_F_inlier_ratio * F_num_inliers`),
// the calibration is assumed to be correct.
double min_E_F_inlier_ratio = 0.95;
// In case an epipolar geometry can be verified, it is checked whether
// the geometry describes a planar scene or panoramic view (pure rotation)
// described by a homography. This is a degenerate case, since epipolar
// geometry is only defined for a moving camera. If the inlier ratio of
// a homography comes close to the inlier ratio of the epipolar geometry,
// a planar or panoramic configuration is assumed.
double max_H_inlier_ratio = 0.8;
// In case of valid two-view geometry, it is checked whether the geometry
// describes a pure translation in the border region of the image. If more
// than a certain ratio of inlier points conform with a pure image
// translation, a watermark is assumed.
double watermark_min_inlier_ratio = 0.7;
// Watermark matches have to be in the border region of the image. The
// border region is defined as the area around the image borders and
// is defined as a fraction of the image diagonal.
double watermark_border_size = 0.1;
// Whether to enable watermark detection. A watermark causes a pure
// translation in the image space with inliers in the border region.
bool detect_watermark = true;
// Whether to ignore watermark models in multiple model estimation.
bool multiple_ignore_watermark = true;
// In case the user asks for it, only going to estimate a Homography
// between both cameras.
bool force_H_use = false;
// Options used to robustly estimate the geometry.
RANSACOptions ransac_options;
void Check() const {
CHECK_GE(min_num_inliers, 0);
CHECK_GE(min_E_F_inlier_ratio, 0);
CHECK_LE(min_E_F_inlier_ratio, 1);
CHECK_GE(max_H_inlier_ratio, 0);
CHECK_LE(max_H_inlier_ratio, 1);
CHECK_GE(watermark_min_inlier_ratio, 0);
CHECK_LE(watermark_min_inlier_ratio, 1);
CHECK_GE(watermark_border_size, 0);
CHECK_LE(watermark_border_size, 1);
ransac_options.Check();
}
};
TwoViewGeometry()
: config(ConfigurationType::UNDEFINED),
E(Eigen::Matrix3d::Zero()),
F(Eigen::Matrix3d::Zero()),
H(Eigen::Matrix3d::Zero()),
qvec(Eigen::Vector4d::Zero()),
tvec(Eigen::Vector3d::Zero()),
tri_angle(0) {}
// Invert the two-view geometry in-place.
void Invert();
// Estimate two-view geometry from calibrated or uncalibrated image pair,
// depending on whether a prior focal length is given or not.
//
// @param camera1 Camera of first image.
// @param points1 Feature points in first image.
// @param camera2 Camera of second image.
// @param points2 Feature points in second image.
// @param matches Feature matches between first and second image.
// @param options Two-view geometry estimation options.
void Estimate(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2,
const FeatureMatches& matches, const Options& options);
// Recursively estimate multiple configurations by removing the previous set
// of inliers from the matches until not enough inliers are found. Inlier
// matches are concatenated and the configuration type is `MULTIPLE` if
// multiple models could be estimated. This is useful to estimate the two-view
// geometry for images with large distortion or multiple rigidly moving
// objects in the scene.
//
// Note that in case the model type is `MULTIPLE`, only the `inlier_matches`
// field will be initialized.
//
// @param camera1 Camera of first image.
// @param points1 Feature points in first image.
// @param camera2 Camera of second image.
// @param points2 Feature points in second image.
// @param matches Feature matches between first and second image.
// @param options Two-view geometry estimation options.
void EstimateMultiple(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2,
const FeatureMatches& matches, const Options& options);
// Estimate two-view geometry and its relative pose from a calibrated or an
// uncalibrated image pair.
//
// @param camera1 Camera of first image.
// @param points1 Feature points in first image.
// @param camera2 Camera of second image.
// @param points2 Feature points in second image.
// @param matches Feature matches between first and second image.
// @param options Two-view geometry estimation options.
bool EstimateRelativePose(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2);
// Estimate two-view geometry from calibrated image pair.
//
// @param camera1 Camera of first image.
// @param points1 Feature points in first image.
// @param camera2 Camera of second image.
// @param points2 Feature points in second image.
// @param matches Feature matches between first and second image.
// @param options Two-view geometry estimation options.
void EstimateCalibrated(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2,
const FeatureMatches& matches,
const Options& options);
// Estimate two-view geometry from uncalibrated image pair.
//
// @param camera1 Camera of first image.
// @param points1 Feature points in first image.
// @param camera2 Camera of second image.
// @param points2 Feature points in second image.
// @param matches Feature matches between first and second image.
// @param options Two-view geometry estimation options.
void EstimateUncalibrated(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2,
const FeatureMatches& matches,
const Options& options);
// Estimate two-view geometry using a Homography,
// depending on the option was user specified or not.
//
// @param camera1 Camera of first image.
// @param points1 Feature points in first image.
// @param camera2 Camera of second image.
// @param points2 Feature points in second image.
// @param matches Feature matches between first and second image.
// @param options Two-view geometry estimation options.
void EstimateHomography(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2,
const FeatureMatches& matches,
const Options& options);
// Detect if inlier matches are caused by a watermark.
// A watermark causes a pure translation in the border are of the image.
static bool DetectWatermark(const Camera& camera1,
const std::vector<Eigen::Vector2d>& points1,
const Camera& camera2,
const std::vector<Eigen::Vector2d>& points2,
const size_t num_inliers,
const std::vector<char>& inlier_mask,
const Options& options);
// One of `ConfigurationType`.
int config;
// Essential matrix.
Eigen::Matrix3d E;
// Fundamental matrix.
Eigen::Matrix3d F;
// Homography matrix.
Eigen::Matrix3d H;
// Relative pose.
Eigen::Vector4d qvec;
Eigen::Vector3d tvec;
// Inlier matches of the configuration.
FeatureMatches inlier_matches;
// Median triangulation angle.
double tri_angle;
};
} // namespace colmap
EIGEN_DEFINE_STL_VECTOR_SPECIALIZATION_CUSTOM(colmap::TwoViewGeometry)
#endif // COLMAP_SRC_ESTIMATORS_TWO_VIEW_GEOMETRY_H_
|