-
-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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 methods in ImageMatching and features in StructureFromMotion and FeatureMatching #768
Conversation
6cf3d23
to
c1cedd5
Compare
@@ -70,6 +79,15 @@ class ImageMatching(desc.CommandLineNode): | |||
uid=[0], | |||
advanced=True, | |||
), | |||
desc.IntParam( | |||
name='nbNeighbors', | |||
label='Nb Neighbors', |
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.
label='Sequential: Nb Neighbors',
@@ -70,6 +79,15 @@ class ImageMatching(desc.CommandLineNode): | |||
uid=[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.
label='VocTree: Nb Matches'
And same for all the other params
@@ -54,7 +54,7 @@ class ImageMatching(desc.CommandLineNode): | |||
), | |||
desc.IntParam( | |||
name='minNbImages', | |||
label='Minimal Number of Images', |
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.
Tree, Weights, Max Descriptors are also VocTree specific.
02daf0b
to
4afa3c5
Compare
Description
Add
nbNeighbor
param in ImageMatching for Sequential method.Add
minNumberOfMatches
param in StructureFromMotion andfilterTrackForks
optionAdd
knownPosesGeometricErrorMax
param andmatchFromKnownCameraPoses
optionFeatures list
[X] new Sequential method
[X] new Frustum method
[X] minNumberOfMatches
[X] knownPosesGeometricErrorMax
alicevision/AliceVision#730