EllipseMatchingOptions¶
giant.relative_opnav.estimators.ellipse_matching
:
Options for configuring the EllipseMatching class
Generally, the default options are what you want, which use subpixel edge detection to identify limbs in the image.
- Parameters:
extraction_method (LimbExtractionMethods)
limb_edge_detection_options (LimbEdgeDetectionOptions | None)
limb_scanner_options (LimbScannerOptions | None)
recenter (bool)
A flag specifying whether to locate the center of the target using a moment algorithm before beginning.
If the a priori knowledge of the bearing to the target is poor (outside of the body) then this flag will help to correct the initial error. See the
moment_algorithm
module for details.This is only used if the extraction method is set to LIMB_SCANNING as it does not affect the EDGE_DETECTION extraction method.
The method to use to extract the observed limbs from the image. Should be
'LIMB_SCANNING'
or'EDGE_DETECTION'
. SeeLimbExtractionMethods
for details.
The options to use to configure the limb edge detector (if being used)
The options to use to configure the limb scanner (if being used)