You are here: Start » FIL.NET » Invoke.CreateEdgeModel_Elastic
Creates a model for edge-based template matching.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void CreateEdgeModel_Elastic ( Fil.Image inImage, Optional<Fil.Region> inTemplateRegion, Optional<Fil.Rectangle2D> inReferenceFrame, Fil.AngleDifferenceTolerance inGradientDifferenceTolerance, float inSmoothingStdDev, float inEdgeThreshold, float inEdgeHysteresis, float inMinAngle, float inMaxAngle, float inMinScale, float inMaxScale, Conditional<Fil.EdgeModel_Elastic> outEdgeModel, Optional<Conditional<Fil.Point2D>> outEdgeModelPoint, Optional<Conditional<List<Fil.Path>>> outEdges )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Image from which model will be extracted. | ||
![]() | inTemplateRegion | Ftl.Optional<Fil.Region> | Region of the image from which model will be extracted. Default value: ftl::NIL. | ||
![]() | inReferenceFrame | Ftl.Optional<Fil.Rectangle2D> | Exact position of the model object in the image. Default value: ftl::NIL. | ||
![]() | inGradientDifferenceTolerance | Fil.AngleDifferenceTolerance | Standard | Determines what gradient angles are considered to be similar. Default value: Standard. | |
![]() | inSmoothingStdDev | float | <0.0f, INF> | 0.0f | Standard deviation of the gaussian smoothing applied before edge extraction. Default value: 0.0f. |
![]() | inEdgeThreshold | float | <0.0f, INF> | 35.0f | Higher threshold for edge magnitude. Default value: 35.0f. |
![]() | inEdgeHysteresis | float | <0.0f, INF> | 15.0f | Threshold hysteresis value for edge magnitude. Default value: 15.0f. |
![]() | inMinAngle | float | -180.0f | Start of range of possible rotations. Default value: -180.0f. | |
![]() | inMaxAngle | float | 180.0f | End of range of possible rotations. Default value: 180.0f. | |
![]() | inMinScale | float | <0.0f, INF> | 1.0f | Start of range of possible scales. Default value: 1.0f. |
![]() | inMaxScale | float | <0.0f, INF> | 1.0f | End of range of possible scales. Default value: 1.0f. |
![]() | outEdgeModel | Ftl.Conditional<Fil.EdgeModel_Elastic> | Created model that can be used by Locate filter. | ||
![]() | outEdgeModelPoint | Ftl.Optional<Ftl.Conditional<Fil.Point2D>> | The middle point of the created model. | ||
![]() | outEdges | Ftl.Optional<Ftl.Conditional<System.Collections.Generic.List<Fil.Path>>> | Visualization of the model edges found at the original resolution. |