Adding new node for triangulation for new pipelines#2113
Open
servantftransperfect wants to merge 2 commits intodevelopfrom
Open
Adding new node for triangulation for new pipelines#2113servantftransperfect wants to merge 2 commits intodevelopfrom
servantftransperfect wants to merge 2 commits intodevelopfrom
Conversation
e9e7cfd to
2663645
Compare
| __version__ = "1.0" | ||
|
|
||
| from meshroom.core import desc | ||
| from meshroom.core.utils import DESCRIBER_TYPES, VERBOSE_LEVEL |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This pull request introduces a new SfM Triangulation feature to the AliceVision pipeline. It adds a new command-line tool for triangulating keypoints using existing camera poses, updates the build system to include this tool, and provides a corresponding Meshroom node for integration into workflows. Additionally, it improves the merging logic for SfMData poses to handle duplicates more robustly.
New SfM Triangulation Feature:
aliceVision_sfmTriangulatingfor triangulating keypoints based on existing camera poses, including argument parsing, triangulation logic, and output handling.SfMTriangulatinginSfMTriangulating.pyto expose the triangulation functionality to the Meshroom GUI, with configurable parameters for triangulation.Improvements to SfMData Merging:
simpleMergefunction to merge pose data from two SfMData objects, checking for duplicate pose IDs and reporting errors if duplicates are found and not ignored.