-
-
Notifications
You must be signed in to change notification settings - Fork 830
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
Add Equirectangular camera support for SFM #1801
Conversation
servantftechnicolor
commented
Jan 9, 2025
- Add a camera object which handles panorama images (equirectangular images) as input for SFM.
- Some cleanup
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
https://github.com/alicevision/AliceVision/blob/develop/src/software/pipeline/main_cameraInit.cpp#L218 needs to be modified so that the equirectangular type is included in the description of the parameter.
@@ -88,6 +88,11 @@ void LbaPolicyConnexity::setupIntrinsics(sfmData::SfMData & sfmData) | |||
for (auto & pi : sfmData.getIntrinsics()) | |||
{ | |||
const auto & vec = _historyHandler->getFocalHistory(pi.first); | |||
if (vec.size() == 0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
if (vec.empty())