Injection of manual picked points as tracks #2008
Open
+230
−2
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 utility for injecting manually drawn 2D point tracks into the AliceVision pipeline, along with the necessary support for a new "manual" image describer type. The main changes include adding a new command-line tool and node for handling shapes-based tracks, updating the core feature type enumeration, and ensuring proper integration throughout the codebase.
New feature: Manual track injection
aliceVision_tracksShapesInjecting
, which reads 2D point shapes from a JSON file and outputs them as tracks, supporting use cases where tracks are manually created or annotated. This includes a new entry point (main_tracksShapesInjecting.cpp
) and build integration. [1] [2]TracksShapesInjecting
, to expose this functionality in the Meshroom UI, allowing users to inject manual tracks as part of their workflow.Core library and enum updates
MANUAL
, to theEImageDescriberType
enum, including string conversion, information display, and a strong support coefficient of 1.0 for robust handling of manual points. [1] [2] [3] [4] [5]Build system
Minor