-
Notifications
You must be signed in to change notification settings - Fork 73
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
COLMAP stuck if increase image_width #53
Comments
Feature matching takes a long time because there has a lot of features. So, I recommend you decrease the number of features. There is two approach. 1.limit the feature 2.Manipulate the calibration Run feature matching on low-resolution (Eg, width 400), and you can use this calibration in any resolution you want. However, you have to change the principal point and focal length. This requires you to understand how the camera's intrinsic and extrinsic work. Maybe check this article I recommend you try the first approach first, but it may degrade the camera calibration, leading to a poor result. If the first approach does not satisfy you, you have to take time to understand how camera calibration work. For COLMAP's part, it takes about an hour for 50 images with width 800 on Threadripper 3960x. For the expected processing time, the neural network part depends on how many iterations to train. A bigger image is likely to take more iteration to converse. I expected a day of training for width 800 on Nvidia V100. However, I would recommend you to check Nvidia's Instant-NGP, which targets a similar view synthesis as our work and can be trained in 5 minutes. |
Hi @pureexe , thanks for the reply. I've installed the latest version of COLMAP 3.8 (if you install via
For the full output, you can see this colab notebook: Do you know how shall I fix this issue? Thanks :) |
The shape of camera model is incorrect. |
Hi. Thanks for this wonderful work. I have a question regarding the usual processing & training time. I’m trying to work on my own image set on Colab. I found that when I increase the
image_width
to something bigger than 400 (for example 720), then the processing time will be drastically increased, specifically it will stuck at this step for a very long time, resulting in Colab to timeout and disconnected:May I know what is the expected processing and training time if I want to render high resolution output, and what is the recommended hardware I’ll need? Thank you :)
The text was updated successfully, but these errors were encountered: