File size: 18,542 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 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 | // 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)
#include "feature/extraction.h"
#include <numeric>
#include "SiftGPU/SiftGPU.h"
#include "feature/sift.h"
#include "util/cuda.h"
#include "util/misc.h"
namespace colmap {
namespace {
void ScaleKeypoints(const Bitmap& bitmap, const Camera& camera,
FeatureKeypoints* keypoints) {
if (static_cast<size_t>(bitmap.Width()) != camera.Width() ||
static_cast<size_t>(bitmap.Height()) != camera.Height()) {
const float scale_x = static_cast<float>(camera.Width()) / bitmap.Width();
const float scale_y = static_cast<float>(camera.Height()) / bitmap.Height();
for (auto& keypoint : *keypoints) {
keypoint.Rescale(scale_x, scale_y);
}
}
}
void MaskKeypoints(const Bitmap& mask, FeatureKeypoints* keypoints,
FeatureDescriptors* descriptors) {
size_t out_index = 0;
BitmapColor<uint8_t> color;
for (size_t i = 0; i < keypoints->size(); ++i) {
if (!mask.GetPixel(static_cast<int>(keypoints->at(i).x),
static_cast<int>(keypoints->at(i).y), &color) ||
color.r == 0) {
// Delete this keypoint by not copying it to the output.
} else {
// Retain this keypoint by copying it to the output index (in case this
// index differs from its current position).
if (out_index != i) {
keypoints->at(out_index) = keypoints->at(i);
for (int col = 0; col < descriptors->cols(); ++col) {
(*descriptors)(out_index, col) = (*descriptors)(i, col);
}
}
out_index += 1;
}
}
keypoints->resize(out_index);
descriptors->conservativeResize(out_index, descriptors->cols());
}
} // namespace
SiftFeatureExtractor::SiftFeatureExtractor(
const ImageReaderOptions& reader_options,
const SiftExtractionOptions& sift_options)
: reader_options_(reader_options),
sift_options_(sift_options),
database_(reader_options_.database_path),
image_reader_(reader_options_, &database_) {
CHECK(reader_options_.Check());
CHECK(sift_options_.Check());
std::shared_ptr<Bitmap> camera_mask;
if (!reader_options_.camera_mask_path.empty()) {
camera_mask = std::make_shared<Bitmap>();
if (!camera_mask->Read(reader_options_.camera_mask_path,
/*as_rgb*/ false)) {
std::cerr << " ERROR: Cannot read camera mask file: "
<< reader_options_.camera_mask_path
<< ". No mask is going to be used." << std::endl;
camera_mask.reset();
}
}
const int num_threads = GetEffectiveNumThreads(sift_options_.num_threads);
CHECK_GT(num_threads, 0);
// Make sure that we only have limited number of objects in the queue to avoid
// excess in memory usage since images and features take lots of memory.
const int kQueueSize = 1;
resizer_queue_ = std::make_unique<JobQueue<internal::ImageData>>(kQueueSize);
extractor_queue_ =
std::make_unique<JobQueue<internal::ImageData>>(kQueueSize);
writer_queue_ = std::make_unique<JobQueue<internal::ImageData>>(kQueueSize);
if (sift_options_.max_image_size > 0) {
for (int i = 0; i < num_threads; ++i) {
resizers_.emplace_back(std::make_unique<internal::ImageResizerThread>(
sift_options_.max_image_size, resizer_queue_.get(),
extractor_queue_.get()));
}
}
if (!sift_options_.domain_size_pooling &&
!sift_options_.estimate_affine_shape && sift_options_.use_gpu) {
std::vector<int> gpu_indices = CSVToVector<int>(sift_options_.gpu_index);
CHECK_GT(gpu_indices.size(), 0);
#ifdef CUDA_ENABLED
if (gpu_indices.size() == 1 && gpu_indices[0] == -1) {
const int num_cuda_devices = GetNumCudaDevices();
CHECK_GT(num_cuda_devices, 0);
gpu_indices.resize(num_cuda_devices);
std::iota(gpu_indices.begin(), gpu_indices.end(), 0);
}
#endif // CUDA_ENABLED
auto sift_gpu_options = sift_options_;
for (const auto& gpu_index : gpu_indices) {
sift_gpu_options.gpu_index = std::to_string(gpu_index);
extractors_.emplace_back(
std::make_unique<internal::SiftFeatureExtractorThread>(
sift_gpu_options, camera_mask, extractor_queue_.get(),
writer_queue_.get()));
}
} else {
if (sift_options_.num_threads == -1 &&
sift_options_.max_image_size ==
SiftExtractionOptions().max_image_size &&
sift_options_.first_octave == SiftExtractionOptions().first_octave) {
std::cout
<< "WARNING: Your current options use the maximum number of "
"threads on the machine to extract features. Extracting SIFT "
"features on the CPU can consume a lot of RAM per thread for "
"large images. Consider reducing the maximum image size and/or "
"the first octave or manually limit the number of extraction "
"threads. Ignore this warning, if your machine has sufficient "
"memory for the current settings."
<< std::endl;
}
auto custom_sift_options = sift_options_;
custom_sift_options.use_gpu = false;
for (int i = 0; i < num_threads; ++i) {
extractors_.emplace_back(
std::make_unique<internal::SiftFeatureExtractorThread>(
custom_sift_options, camera_mask, extractor_queue_.get(),
writer_queue_.get()));
}
}
writer_ = std::make_unique<internal::FeatureWriterThread>(
image_reader_.NumImages(), &database_, writer_queue_.get());
}
void SiftFeatureExtractor::Run() {
PrintHeading1("Feature extraction");
for (auto& resizer : resizers_) {
resizer->Start();
}
for (auto& extractor : extractors_) {
extractor->Start();
}
writer_->Start();
for (auto& extractor : extractors_) {
if (!extractor->CheckValidSetup()) {
return;
}
}
while (image_reader_.NextIndex() < image_reader_.NumImages()) {
if (IsStopped()) {
resizer_queue_->Stop();
extractor_queue_->Stop();
resizer_queue_->Clear();
extractor_queue_->Clear();
break;
}
internal::ImageData image_data;
image_data.status =
image_reader_.Next(&image_data.camera, &image_data.image,
&image_data.bitmap, &image_data.mask);
if (image_data.status != ImageReader::Status::SUCCESS) {
image_data.bitmap.Deallocate();
}
if (sift_options_.max_image_size > 0) {
CHECK(resizer_queue_->Push(std::move(image_data)));
} else {
CHECK(extractor_queue_->Push(std::move(image_data)));
}
}
resizer_queue_->Wait();
resizer_queue_->Stop();
for (auto& resizer : resizers_) {
resizer->Wait();
}
extractor_queue_->Wait();
extractor_queue_->Stop();
for (auto& extractor : extractors_) {
extractor->Wait();
}
writer_queue_->Wait();
writer_queue_->Stop();
writer_->Wait();
GetTimer().PrintMinutes();
}
FeatureImporter::FeatureImporter(const ImageReaderOptions& reader_options,
const std::string& import_path)
: reader_options_(reader_options), import_path_(import_path) {}
void FeatureImporter::Run() {
PrintHeading1("Feature import");
if (!ExistsDir(import_path_)) {
std::cerr << " ERROR: Import directory does not exist." << std::endl;
return;
}
Database database(reader_options_.database_path);
ImageReader image_reader(reader_options_, &database);
while (image_reader.NextIndex() < image_reader.NumImages()) {
if (IsStopped()) {
break;
}
std::cout << StringPrintf("Processing file [%d/%d]",
image_reader.NextIndex() + 1,
image_reader.NumImages())
<< std::endl;
// Load image data and possibly save camera to database.
Camera camera;
Image image;
Bitmap bitmap;
if (image_reader.Next(&camera, &image, &bitmap, nullptr) !=
ImageReader::Status::SUCCESS) {
continue;
}
const std::string path = JoinPaths(import_path_, image.Name() + ".txt");
if (ExistsFile(path)) {
FeatureKeypoints keypoints;
FeatureDescriptors descriptors;
LoadSiftFeaturesFromTextFile(path, &keypoints, &descriptors);
std::cout << " Features: " << keypoints.size() << std::endl;
DatabaseTransaction database_transaction(&database);
if (image.ImageId() == kInvalidImageId) {
image.SetImageId(database.WriteImage(image));
}
if (!database.ExistsKeypoints(image.ImageId())) {
database.WriteKeypoints(image.ImageId(), keypoints);
}
if (!database.ExistsDescriptors(image.ImageId())) {
database.WriteDescriptors(image.ImageId(), descriptors);
}
} else {
std::cout << " SKIP: No features found at " << path << std::endl;
}
}
GetTimer().PrintMinutes();
}
namespace internal {
ImageResizerThread::ImageResizerThread(const int max_image_size,
JobQueue<ImageData>* input_queue,
JobQueue<ImageData>* output_queue)
: max_image_size_(max_image_size),
input_queue_(input_queue),
output_queue_(output_queue) {}
void ImageResizerThread::Run() {
while (true) {
if (IsStopped()) {
break;
}
auto input_job = input_queue_->Pop();
if (input_job.IsValid()) {
auto& image_data = input_job.Data();
if (image_data.status == ImageReader::Status::SUCCESS) {
if (static_cast<int>(image_data.bitmap.Width()) > max_image_size_ ||
static_cast<int>(image_data.bitmap.Height()) > max_image_size_) {
// Fit the down-sampled version exactly into the max dimensions.
const double scale =
static_cast<double>(max_image_size_) /
std::max(image_data.bitmap.Width(), image_data.bitmap.Height());
const int new_width =
static_cast<int>(image_data.bitmap.Width() * scale);
const int new_height =
static_cast<int>(image_data.bitmap.Height() * scale);
image_data.bitmap.Rescale(new_width, new_height);
}
}
output_queue_->Push(std::move(image_data));
} else {
break;
}
}
}
SiftFeatureExtractorThread::SiftFeatureExtractorThread(
const SiftExtractionOptions& sift_options,
const std::shared_ptr<Bitmap>& camera_mask,
JobQueue<ImageData>* input_queue, JobQueue<ImageData>* output_queue)
: sift_options_(sift_options),
camera_mask_(camera_mask),
input_queue_(input_queue),
output_queue_(output_queue) {
CHECK(sift_options_.Check());
#ifndef CUDA_ENABLED
if (sift_options_.use_gpu) {
opengl_context_ = std::make_unique<OpenGLContextManager>();
}
#endif
}
void SiftFeatureExtractorThread::Run() {
std::unique_ptr<SiftGPU> sift_gpu;
if (sift_options_.use_gpu) {
#ifndef CUDA_ENABLED
CHECK(opengl_context_);
opengl_context_->MakeCurrent();
#endif
sift_gpu = std::make_unique<SiftGPU>();
if (!CreateSiftGPUExtractor(sift_options_, sift_gpu.get())) {
std::cerr << "ERROR: SiftGPU not fully supported." << std::endl;
SignalInvalidSetup();
return;
}
}
SignalValidSetup();
while (true) {
if (IsStopped()) {
break;
}
auto input_job = input_queue_->Pop();
if (input_job.IsValid()) {
auto& image_data = input_job.Data();
if (image_data.status == ImageReader::Status::SUCCESS) {
bool success = false;
if (sift_options_.estimate_affine_shape ||
sift_options_.domain_size_pooling) {
success = ExtractCovariantSiftFeaturesCPU(
sift_options_, image_data.bitmap, &image_data.keypoints,
&image_data.descriptors);
} else if (sift_options_.use_gpu) {
success = ExtractSiftFeaturesGPU(
sift_options_, image_data.bitmap, sift_gpu.get(),
&image_data.keypoints, &image_data.descriptors);
} else {
success = ExtractSiftFeaturesCPU(sift_options_, image_data.bitmap,
&image_data.keypoints,
&image_data.descriptors);
}
if (success) {
ScaleKeypoints(image_data.bitmap, image_data.camera,
&image_data.keypoints);
if (camera_mask_) {
MaskKeypoints(*camera_mask_, &image_data.keypoints,
&image_data.descriptors);
}
if (image_data.mask.Data()) {
MaskKeypoints(image_data.mask, &image_data.keypoints,
&image_data.descriptors);
}
} else {
image_data.status = ImageReader::Status::FAILURE;
}
}
image_data.bitmap.Deallocate();
output_queue_->Push(std::move(image_data));
} else {
break;
}
}
}
FeatureWriterThread::FeatureWriterThread(const size_t num_images,
Database* database,
JobQueue<ImageData>* input_queue)
: num_images_(num_images), database_(database), input_queue_(input_queue) {}
void FeatureWriterThread::Run() {
size_t image_index = 0;
while (true) {
if (IsStopped()) {
break;
}
auto input_job = input_queue_->Pop();
if (input_job.IsValid()) {
auto& image_data = input_job.Data();
image_index += 1;
std::cout << StringPrintf("Processed file [%d/%d]", image_index,
num_images_)
<< std::endl;
std::cout << StringPrintf(" Name: %s",
image_data.image.Name().c_str())
<< std::endl;
if (image_data.status == ImageReader::Status::IMAGE_EXISTS) {
std::cout << " SKIP: Features for image already extracted."
<< std::endl;
} else if (image_data.status == ImageReader::Status::BITMAP_ERROR) {
std::cout << " ERROR: Failed to read image file format." << std::endl;
} else if (image_data.status ==
ImageReader::Status::CAMERA_SINGLE_DIM_ERROR) {
std::cout << " ERROR: Single camera specified, "
"but images have different dimensions."
<< std::endl;
} else if (image_data.status ==
ImageReader::Status::CAMERA_EXIST_DIM_ERROR) {
std::cout << " ERROR: Image previously processed, but current image "
"has different dimensions."
<< std::endl;
} else if (image_data.status == ImageReader::Status::CAMERA_PARAM_ERROR) {
std::cout << " ERROR: Camera has invalid parameters." << std::endl;
} else if (image_data.status == ImageReader::Status::FAILURE) {
std::cout << " ERROR: Failed to extract features." << std::endl;
}
if (image_data.status != ImageReader::Status::SUCCESS) {
continue;
}
std::cout << StringPrintf(" Dimensions: %d x %d",
image_data.camera.Width(),
image_data.camera.Height())
<< std::endl;
std::cout << StringPrintf(" Camera: #%d - %s",
image_data.camera.CameraId(),
image_data.camera.ModelName().c_str())
<< std::endl;
std::cout << StringPrintf(" Focal Length: %.2fpx",
image_data.camera.MeanFocalLength());
if (image_data.camera.HasPriorFocalLength()) {
std::cout << " (Prior)" << std::endl;
} else {
std::cout << std::endl;
}
if (image_data.image.HasTvecPrior()) {
std::cout << StringPrintf(
" GPS: LAT=%.3f, LON=%.3f, ALT=%.3f",
image_data.image.TvecPrior(0),
image_data.image.TvecPrior(1),
image_data.image.TvecPrior(2))
<< std::endl;
}
std::cout << StringPrintf(" Features: %d",
image_data.keypoints.size())
<< std::endl;
DatabaseTransaction database_transaction(database_);
if (image_data.image.ImageId() == kInvalidImageId) {
image_data.image.SetImageId(database_->WriteImage(image_data.image));
}
if (!database_->ExistsKeypoints(image_data.image.ImageId())) {
database_->WriteKeypoints(image_data.image.ImageId(),
image_data.keypoints);
}
if (!database_->ExistsDescriptors(image_data.image.ImageId())) {
database_->WriteDescriptors(image_data.image.ImageId(),
image_data.descriptors);
}
} else {
break;
}
}
}
} // namespace internal
} // namespace colmap
|