Package boofcv.factory.sfm
Class ConfigStereoQuadPnP
java.lang.Object
boofcv.factory.sfm.ConfigStereoQuadPnP
- All Implemented Interfaces:
Configuration
,Serializable
Configuration for
WrapVisOdomDualTrackPnP
.- See Also:
-
Field Summary
Modifier and TypeFieldDescriptionAssociation approach for matching frames across time stepsAssociation approach for matching stereo pairsConfiguration for Bundle AdjustmentConvergence criteria for bundle adjustment.Which feature detector / descriptor should it usedouble
Tolerance for matching stereo features along epipolar line in PixelsWhich PNP solution to useConfiguration for RANSAC.int
Number of iterations to perform when refining the initial frame-to-frame motion estimate. -
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Checks to see if the configuration is valid.setTo
(ConfigStereoQuadPnP src) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface boofcv.struct.Configuration
serializeActiveFields, serializeInitialize
-
Field Details
-
bundle
Configuration for Bundle Adjustment -
bundleConverge
Convergence criteria for bundle adjustment. Set max iterations to ≤ 0 to disable -
pnp
Which PNP solution to use -
ransac
Configuration for RANSAC. Used to robustly estimate frame-to-frame motion -
refineIterations
public int refineIterationsNumber of iterations to perform when refining the initial frame-to-frame motion estimate. Disable ≤ 0 -
detectDescribe
Which feature detector / descriptor should it use -
associateF2F
Association approach for matching frames across time steps -
associateL2R
Association approach for matching stereo pairs -
epipolarTol
public double epipolarTolTolerance for matching stereo features along epipolar line in Pixels
-
-
Constructor Details
-
ConfigStereoQuadPnP
public ConfigStereoQuadPnP()
-
-
Method Details
-
setTo
-
checkValidity
public void checkValidity()Description copied from interface:Configuration
Checks to see if the configuration is valid. If it is invalid, throw an exception explaining what is incorrect.- Specified by:
checkValidity
in interfaceConfiguration
-