You are here: Start » FIL.NET » FIL.ScanSingleEdge
Locates the strongest transition between dark and bright pixels along a given path.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
public static void ScanSingleEdge ( FilNet.Image inImage, FilNet.ScanMap inScanMap, FilNet.EdgeScanParams inEdgeScanParams, FilNet.Selection inEdgeSelection, out FilNet.Edge1D? outEdge, FilNet.Profile diagBrightnessProfile, FilNet.Profile diagResponseProfile )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Input image. | ||
![]() | inScanMap | FilNet.ScanMap | Data precomputed with CreateScanMap. | ||
![]() | inEdgeScanParams | FilNet.EdgeScanParams | Parameters controlling the edge extraction process. | ||
![]() | inEdgeSelection | FilNet.Selection | fil::Selection::Best | Selection mode of the resulting edge. Default value: fil::Selection::Best. | |
![]() | outEdge | FilNet.Edge1D? | Found edge. | ||
![]() | diagBrightnessProfile | FilNet.Profile | Extracted image profile. | ||
![]() | diagResponseProfile | FilNet.Profile | Profile of the edge (derivative) operator response. |
Description
The operation scans the image using inScanMap previously generated from a scan path and locates the strongest edge perpendicular to the path. If the strongest edge is weaker than inEdgeScanParams.minMagnitude then the outputs are set to NIL.
Examples
![]() |
![]() |
ScanSingleEdge locates the strongest edge using a scan map representing the scan path above.
Remarks
Read more about Local Coordinate Systems in Machine Vision Guide: Local Coordinate Systems.
This filter is a part of the 1D Edge Detection toolset. For a comprehensive introduction to this technique please refer to 1D Edge Detection and 1D Edge Detection - Subpixel Precision chapters of our Machine Vision Guide.
Function Overrides
- ScanSingleEdge(Image, ScanMap, EdgeScanParams, Selection, Nullable<Edge1D>)
- ScanSingleEdge(Image, ScanMap, EdgeScanParams, Selection, Nullable<LocalBlindness>, Nullable<Edge1D>)
- ScanSingleEdge(Image, ScanMap, EdgeScanParams, Selection, Nullable<LocalBlindness>, Nullable<Edge1D>, Profile, Profile)