You are here: Start » AVL.NET » Invoke.CreateEdgeModel2
Creates a model for edge-based template matching.
| Namespace: | Avl | 
|---|---|
| Assembly: | AvlNet.dll | 
Syntax
C++
C#
public static void CreateEdgeModel2 ( Avl.Image inImage, Optional<Avl.Region> inTemplateRegion, Optional<Avl.Rectangle2D> inReferenceFrame, int inMinPyramidLevel, Optional<int> inMaxPyramidLevel, float inSmoothingStdDev, float inEdgeThreshold, float inEdgeHysteresis, float inMinAngle, float inMaxAngle, float inAnglePrecision, float inMinScale, float inMaxScale, float inScalePrecision, float inEdgeCompleteness, Conditional<Avl.EdgeModel2> outEdgeModel, Optional<Conditional<Avl.Point2D>> outEdgeModelPoint, Optional<Conditional<List<Avl.Path>>> outEdges, Diagnostic<Conditional<List<Avl.Image>>> diagEdgePyramid )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]()  | inImage | Avl.Image | Image from which model will be extracted. | ||
![]()  | inTemplateRegion | Atl.Optional<Avl.Region> | Region of the image from which model will be extracted. Default value: atl::NIL. | ||
![]()  | inReferenceFrame | Atl.Optional<Avl.Rectangle2D> | Exact position of the model object in the image. Default value: atl::NIL. | ||
![]()  | inMinPyramidLevel | int | <0, 12> | 1 | Defines the number of reduced resolution levels dynamically created during model creation. Default value: 1. | 
![]()  | inMaxPyramidLevel | Atl.Optional<int> | <0, 12> | Defines the number of reduced resolution levels used to speed up computations. Default value: atl::NIL. | |
![]()  | 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. | |
![]()  | inAnglePrecision | float | <0.001f, 10.0f> | 1.0f | Defines angular resolution of the matching process. Default value: 1.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. | 
![]()  | inScalePrecision | float | <0.001f, 10.0f> | 1.0f | Defines scale resolution of the matching process. Default value: 1.0f. | 
![]()  | inEdgeCompleteness | float | <0.01f, 1.0f> | 1.0f | Determines what fraction of the edges will be present in the created model. Default value: 1.0f. | 
![]()  | outEdgeModel | Atl.Conditional<Avl.EdgeModel2> | Created model that can be used by LocateMultipleObjects_Edges. | ||
![]()  | outEdgeModelPoint | Atl.Optional<Atl.Conditional<Avl.Point2D>> | The middle point of the created model. | ||
![]()  | outEdges | Atl.Optional<Atl.Conditional<System.Collections.Generic.List<Avl.Path>>> | Visualization of the model edges found at the original resolution. | ||
![]()  | diagEdgePyramid | Avl.Diagnostic<Atl.Conditional<System.Collections.Generic.List<Avl.Image>>> | Visualization of the edges found at different resolution levels. | 



