File size: 19,308 Bytes
2b5a2b6 | 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 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 | // 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_FEATURE_MATCHING_H_
#define COLMAP_SRC_FEATURE_MATCHING_H_
#include <array>
#include <string>
#include <vector>
#include "base/database.h"
#include "feature/sift.h"
#include "util/alignment.h"
#include "util/cache.h"
#include "util/opengl_utils.h"
#include "util/threading.h"
#include "util/timer.h"
namespace colmap {
struct ExhaustiveMatchingOptions {
// Block size, i.e. number of images to simultaneously load into memory.
int block_size = 50;
bool Check() const;
};
struct SequentialMatchingOptions {
// Number of overlapping image pairs.
int overlap = 10;
// Whether to match images against their quadratic neighbors.
bool quadratic_overlap = true;
// Whether to enable vocabulary tree based loop detection.
bool loop_detection = false;
// Loop detection is invoked every `loop_detection_period` images.
int loop_detection_period = 10;
// The number of images to retrieve in loop detection. This number should
// be significantly bigger than the sequential matching overlap.
int loop_detection_num_images = 50;
// Number of nearest neighbors to retrieve per query feature.
int loop_detection_num_nearest_neighbors = 1;
// Number of nearest-neighbor checks to use in retrieval.
int loop_detection_num_checks = 256;
// How many images to return after spatial verification. Set to 0 to turn off
// spatial verification.
int loop_detection_num_images_after_verification = 0;
// The maximum number of features to use for indexing an image. If an
// image has more features, only the largest-scale features will be indexed.
int loop_detection_max_num_features = -1;
// Path to the vocabulary tree.
std::string vocab_tree_path = "";
bool Check() const;
};
struct VocabTreeMatchingOptions {
// Number of images to retrieve for each query image.
int num_images = 100;
// Number of nearest neighbors to retrieve per query feature.
int num_nearest_neighbors = 5;
// Number of nearest-neighbor checks to use in retrieval.
int num_checks = 256;
// How many images to return after spatial verification. Set to 0 to turn off
// spatial verification.
int num_images_after_verification = 0;
// The maximum number of features to use for indexing an image. If an
// image has more features, only the largest-scale features will be indexed.
int max_num_features = -1;
// Path to the vocabulary tree.
std::string vocab_tree_path = "";
// Optional path to file with specific image names to match.
std::string match_list_path = "";
bool Check() const;
};
struct SpatialMatchingOptions {
// Whether the location priors in the database are GPS coordinates in
// the form of longitude and latitude coordinates in degrees.
bool is_gps = true;
// Whether to ignore the Z-component of the location prior.
bool ignore_z = true;
// The maximum number of nearest neighbors to match.
int max_num_neighbors = 50;
// The maximum distance between the query and nearest neighbor. For GPS
// coordinates the unit is Euclidean distance in meters.
double max_distance = 100;
bool Check() const;
};
struct TransitiveMatchingOptions {
// The maximum number of image pairs to process in one batch.
int batch_size = 1000;
// The number of transitive closure iterations.
int num_iterations = 3;
bool Check() const;
};
struct ImagePairsMatchingOptions {
// Number of image pairs to match in one batch.
int block_size = 1225;
// Path to the file with the matches.
std::string match_list_path = "";
bool Check() const;
};
struct FeaturePairsMatchingOptions {
// Whether to geometrically verify the given matches.
bool verify_matches = true;
// Path to the file with the matches.
std::string match_list_path = "";
bool Check() const;
};
namespace internal {
struct FeatureMatcherData {
image_t image_id1 = kInvalidImageId;
image_t image_id2 = kInvalidImageId;
FeatureMatches matches;
TwoViewGeometry two_view_geometry;
};
} // namespace internal
using FeatureKeypointsPtr = std::shared_ptr<FeatureKeypoints>;
using FeatureDescriptorsPtr = std::shared_ptr<FeatureDescriptors>;
// Cache for feature matching to minimize database access during matching.
class FeatureMatcherCache {
public:
FeatureMatcherCache(const size_t cache_size, const Database* database);
void Setup();
const Camera& GetCamera(const camera_t camera_id) const;
const Image& GetImage(const image_t image_id) const;
FeatureKeypointsPtr GetKeypoints(const image_t image_id);
FeatureDescriptorsPtr GetDescriptors(const image_t image_id);
FeatureMatches GetMatches(const image_t image_id1, const image_t image_id2);
std::vector<image_t> GetImageIds() const;
bool ExistsKeypoints(const image_t image_id);
bool ExistsDescriptors(const image_t image_id);
bool ExistsMatches(const image_t image_id1, const image_t image_id2);
bool ExistsInlierMatches(const image_t image_id1, const image_t image_id2);
void WriteMatches(const image_t image_id1, const image_t image_id2,
const FeatureMatches& matches);
void WriteTwoViewGeometry(const image_t image_id1, const image_t image_id2,
const TwoViewGeometry& two_view_geometry);
void DeleteMatches(const image_t image_id1, const image_t image_id2);
void DeleteInlierMatches(const image_t image_id1, const image_t image_id2);
private:
const size_t cache_size_;
const Database* database_;
std::mutex database_mutex_;
EIGEN_STL_UMAP(camera_t, Camera) cameras_cache_;
EIGEN_STL_UMAP(image_t, Image) images_cache_;
std::unique_ptr<LRUCache<image_t, FeatureKeypointsPtr>> keypoints_cache_;
std::unique_ptr<LRUCache<image_t, FeatureDescriptorsPtr>> descriptors_cache_;
std::unique_ptr<LRUCache<image_t, bool>> keypoints_exists_cache_;
std::unique_ptr<LRUCache<image_t, bool>> descriptors_exists_cache_;
};
class FeatureMatcherThread : public Thread {
public:
FeatureMatcherThread(const SiftMatchingOptions& options,
FeatureMatcherCache* cache);
void SetMaxNumMatches(const int max_num_matches);
protected:
SiftMatchingOptions options_;
FeatureMatcherCache* cache_;
};
class SiftCPUFeatureMatcher : public FeatureMatcherThread {
public:
typedef internal::FeatureMatcherData Input;
typedef internal::FeatureMatcherData Output;
SiftCPUFeatureMatcher(const SiftMatchingOptions& options,
FeatureMatcherCache* cache,
JobQueue<Input>* input_queue,
JobQueue<Output>* output_queue);
protected:
void Run() override;
JobQueue<Input>* input_queue_;
JobQueue<Output>* output_queue_;
};
class SiftGPUFeatureMatcher : public FeatureMatcherThread {
public:
typedef internal::FeatureMatcherData Input;
typedef internal::FeatureMatcherData Output;
SiftGPUFeatureMatcher(const SiftMatchingOptions& options,
FeatureMatcherCache* cache,
JobQueue<Input>* input_queue,
JobQueue<Output>* output_queue);
protected:
void Run() override;
void GetDescriptorData(const int index, const image_t image_id,
const FeatureDescriptors** descriptors_ptr);
JobQueue<Input>* input_queue_;
JobQueue<Output>* output_queue_;
std::unique_ptr<OpenGLContextManager> opengl_context_;
// The previously uploaded images to the GPU.
std::array<image_t, 2> prev_uploaded_image_ids_;
std::array<FeatureDescriptorsPtr, 2> prev_uploaded_descriptors_;
};
class GuidedSiftCPUFeatureMatcher : public FeatureMatcherThread {
public:
typedef internal::FeatureMatcherData Input;
typedef internal::FeatureMatcherData Output;
GuidedSiftCPUFeatureMatcher(const SiftMatchingOptions& options,
FeatureMatcherCache* cache,
JobQueue<Input>* input_queue,
JobQueue<Output>* output_queue);
private:
void Run() override;
JobQueue<Input>* input_queue_;
JobQueue<Output>* output_queue_;
};
class GuidedSiftGPUFeatureMatcher : public FeatureMatcherThread {
public:
typedef internal::FeatureMatcherData Input;
typedef internal::FeatureMatcherData Output;
GuidedSiftGPUFeatureMatcher(const SiftMatchingOptions& options,
FeatureMatcherCache* cache,
JobQueue<Input>* input_queue,
JobQueue<Output>* output_queue);
private:
void Run() override;
void GetFeatureData(const int index, const image_t image_id,
const FeatureKeypoints** keypoints_ptr,
const FeatureDescriptors** descriptors_ptr);
JobQueue<Input>* input_queue_;
JobQueue<Output>* output_queue_;
std::unique_ptr<OpenGLContextManager> opengl_context_;
// The previously uploaded images to the GPU.
std::array<image_t, 2> prev_uploaded_image_ids_;
std::array<FeatureKeypointsPtr, 2> prev_uploaded_keypoints_;
std::array<FeatureDescriptorsPtr, 2> prev_uploaded_descriptors_;
};
class TwoViewGeometryVerifier : public Thread {
public:
typedef internal::FeatureMatcherData Input;
typedef internal::FeatureMatcherData Output;
TwoViewGeometryVerifier(const SiftMatchingOptions& options,
FeatureMatcherCache* cache,
JobQueue<Input>* input_queue,
JobQueue<Output>* output_queue);
protected:
void Run() override;
const SiftMatchingOptions options_;
TwoViewGeometry::Options two_view_geometry_options_;
FeatureMatcherCache* cache_;
JobQueue<Input>* input_queue_;
JobQueue<Output>* output_queue_;
};
// Multi-threaded and multi-GPU SIFT feature matcher, which writes the computed
// results to the database and skips already matched image pairs. To improve
// performance of the matching by taking advantage of caching and database
// transactions, pass multiple images to the `Match` function. Note that the
// database should be in an active transaction while calling `Match`.
class SiftFeatureMatcher {
public:
SiftFeatureMatcher(const SiftMatchingOptions& options, Database* database,
FeatureMatcherCache* cache);
~SiftFeatureMatcher();
// Setup the matchers and return if successful.
bool Setup();
// Match one batch of multiple image pairs.
void Match(const std::vector<std::pair<image_t, image_t>>& image_pairs);
private:
SiftMatchingOptions options_;
Database* database_;
FeatureMatcherCache* cache_;
bool is_setup_;
std::vector<std::unique_ptr<FeatureMatcherThread>> matchers_;
std::vector<std::unique_ptr<FeatureMatcherThread>> guided_matchers_;
std::vector<std::unique_ptr<Thread>> verifiers_;
std::unique_ptr<ThreadPool> thread_pool_;
JobQueue<internal::FeatureMatcherData> matcher_queue_;
JobQueue<internal::FeatureMatcherData> verifier_queue_;
JobQueue<internal::FeatureMatcherData> guided_matcher_queue_;
JobQueue<internal::FeatureMatcherData> output_queue_;
};
// Exhaustively match images by processing each block in the exhaustive match
// matrix in one batch:
//
// +----+----+-----------------> images[i]
// |#000|0000|
// |1#00|1000| <- Above the main diagonal, the block diagonal is not matched
// |11#0|1100| ^
// |111#|1110| |
// +----+----+ |
// |1000|#000|\ |
// |1100|1#00| \ One block |
// |1110|11#0| / of image pairs |
// |1111|111#|/ |
// +----+----+ |
// | ^ |
// | | |
// | Below the main diagonal, the block diagonal is matched <--------------+
// |
// v
// images[i]
//
// Pairs will only be matched if 1, to avoid duplicate pairs. Pairs with #
// are on the main diagonal and denote pairs of the same image.
class ExhaustiveFeatureMatcher : public Thread {
public:
ExhaustiveFeatureMatcher(const ExhaustiveMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
void Run() override;
const ExhaustiveMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
SiftFeatureMatcher matcher_;
};
// Sequentially match images within neighborhood:
//
// +-------------------------------+-----------------------> images[i]
// ^ | ^
// | Current image[i] |
// | | |
// +----------+-----------+
// |
// Match image_i against
//
// image_[i - o, i + o] with o = [1 .. overlap]
// image_[i - 2^o, i + 2^o] (for quadratic overlap)
//
// Sequential order is determined based on the image names in ascending order.
//
// Invoke loop detection if `(i mod loop_detection_period) == 0`, retrieve
// most similar `loop_detection_num_images` images from vocabulary tree,
// and perform matching and verification.
class SequentialFeatureMatcher : public Thread {
public:
SequentialFeatureMatcher(const SequentialMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
void Run() override;
std::vector<image_t> GetOrderedImageIds() const;
void RunSequentialMatching(const std::vector<image_t>& image_ids);
void RunLoopDetection(const std::vector<image_t>& image_ids);
const SequentialMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
SiftFeatureMatcher matcher_;
};
// Match each image against its nearest neighbors using a vocabulary tree.
class VocabTreeFeatureMatcher : public Thread {
public:
VocabTreeFeatureMatcher(const VocabTreeMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
void Run() override;
const VocabTreeMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
SiftFeatureMatcher matcher_;
};
// Match images against spatial nearest neighbors using prior location
// information, e.g. provided manually or extracted from EXIF.
class SpatialFeatureMatcher : public Thread {
public:
SpatialFeatureMatcher(const SpatialMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
void Run() override;
const SpatialMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
SiftFeatureMatcher matcher_;
};
// Match transitive image pairs in a database with existing feature matches.
// This matcher transitively closes loops. For example, if image pairs A-B and
// B-C match but A-C has not been matched, then this matcher attempts to match
// A-C. This procedure is performed for multiple iterations.
class TransitiveFeatureMatcher : public Thread {
public:
TransitiveFeatureMatcher(const TransitiveMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
void Run() override;
const TransitiveMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
SiftFeatureMatcher matcher_;
};
// Match images manually specified in a list of image pairs.
//
// Read matches file with the following format:
//
// image_name1 image_name2
// image_name1 image_name3
// image_name2 image_name3
// ...
//
class ImagePairsFeatureMatcher : public Thread {
public:
ImagePairsFeatureMatcher(const ImagePairsMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
void Run() override;
const ImagePairsMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
SiftFeatureMatcher matcher_;
};
// Import feature matches from a text file.
//
// Read matches file with the following format:
//
// image_name1 image_name2
// 0 1
// 1 2
// 2 3
// <empty line>
// image_name1 image_name3
// 0 1
// 1 2
// 2 3
// ...
//
class FeaturePairsFeatureMatcher : public Thread {
public:
FeaturePairsFeatureMatcher(const FeaturePairsMatchingOptions& options,
const SiftMatchingOptions& match_options,
const std::string& database_path);
private:
const static size_t kCacheSize = 100;
void Run() override;
const FeaturePairsMatchingOptions options_;
const SiftMatchingOptions match_options_;
Database database_;
FeatureMatcherCache cache_;
};
} // namespace colmap
#endif // COLMAP_SRC_FEATURE_MATCHING_H_
|