You are here: Start » FIL.NET » Invoke.FitArcToEdges
Performs a series of 1D edge detections and finds an arc that best matches the detected points.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void FitArcToEdges ( Fil.Image inImage, Fil.ArcFittingMap inFittingMap, Fil.EdgeScanParams inEdgeScanParams, Fil.Selection inEdgeSelection, Optional<Fil.LocalBlindness> inLocalBlindness, float inMaxIncompleteness, Fil.CircleFittingMethod inFittingMethod, Optional<Fil.MEstimator> inOutlierSuppression, Conditional<Fil.Arc2D> outArc, Optional<List<Conditional<Fil.Edge1D>>> outEdges, Optional<Conditional<Fil.Profile>> outDeviationProfile, Optional<List<Fil.Point2D>> outInliers, Optional<List<Fil.Profile>> outBrightnessProfiles, Optional<List<Fil.Profile>> outResponseProfiles )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Input image to fit arc to. | ||
![]() | inFittingMap | Fil.ArcFittingMap | Input fitting map. | ||
![]() | inEdgeScanParams | Fil.EdgeScanParams | Parameters controlling the edge extraction process. | ||
![]() | inEdgeSelection | Fil.Selection | fil::Selection::Best | Selection mode of edges. Default value: fil::Selection::Best. | |
![]() | inLocalBlindness | Ftl.Optional<Fil.LocalBlindness> | Defines conditions in which weaker edges can be detected in the vicinity of stronger edges. Default value: ftl::NIL. | ||
![]() | inMaxIncompleteness | float | <0.0f, 0.999f> | 0.1f | Maximal fraction of edge points not found. Default value: 0.1f. |
![]() | inFittingMethod | Fil.CircleFittingMethod | AlgebraicTaubin | Method used to fit an arc. Default value: AlgebraicTaubin. | |
![]() | inOutlierSuppression | Ftl.Optional<Fil.MEstimator> | Selects a method for ignoring incorrectly detected points. Default value: ftl::NIL. | ||
![]() | outArc | Ftl.Conditional<Fil.Arc2D> | Fitted arc or nothing if the fitting fails. | ||
![]() | outEdges | Ftl.Optional<System.Collections.Generic.List<Ftl.Conditional<Fil.Edge1D>>> | Found edges. | ||
![]() | outDeviationProfile | Ftl.Optional<Ftl.Conditional<Fil.Profile>> | Profile of distances between the actual arc points and the corresponding reference arc points. | ||
![]() | outInliers | Ftl.Optional<System.Collections.Generic.List<Fil.Point2D>> | Points matching the fitting arc. | ||
![]() | outBrightnessProfiles | Ftl.Optional<System.Collections.Generic.List<Fil.Profile>> | Extracted image profiles. | ||
![]() | outResponseProfiles | Ftl.Optional<System.Collections.Generic.List<Fil.Profile>> | Profiles of the edge (derivative) operator response. |