AIBluefisher / DAGSfM

Distributed and Graph-based Structure from Motion. This project includes the official implementation of our Pattern Recognition 2020 paper: Graph-Based Parallel Large Scale Structure from Motion.
https://aibluefisher.github.io/GraphSfM/
BSD 3-Clause "New" or "Revised" License
395 stars 84 forks source link

Seems there is a problem with Feature Extraction #30

Open jchen706 opened 3 years ago

jchen706 commented 3 years ago

image

I think my previous example worked because feature extraction was already done.

The problem is from the colmap Sift Feature Extractor, the extraction.cc in feature folder.

It breaks here in the file.

` if (sift_options_.max_image_size > 0) {
// Breaks at this line here 
      CHECK(resizer_queue_->Push(image_data));
    } else {
      CHECK(extractor_queue_->Push(image_data));
    }`