You are here: Start » FIL.NET » FIL.SegmentImage_Edges
Segments an image into blobs using image edges as their borders.
Namespace: | FilNet |
---|---|
Assembly: | FIL.NET.dll |
Syntax
C++
C#
public static void SegmentImage_Edges ( FilNet.Image inImage, NullableRef<FilNet.Region> inRoi, int inFrameSize, float inStdDev, float inEdgeThreshold, float inEdgeHysteresis, float inMaxJoiningDistance, int inMinArea, int? inMaxArea, bool inComputeNestingLevels, int inEdgeClosing, IList<FilNet.Region> outBlobs )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | FilNet.Image | Image from which blobs are extracted. | ||
![]() | inRoi | FilNet.NullableRef<FilNet.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inFrameSize | int | <0, INF> | 1 | How many pixels from the region border are excluded from the results. Default value: 1. |
![]() | inStdDev | float | <0.0f, INF> | 2.0f | Amount of smoothing used by the edge filter. Default value: 2.0f. |
![]() | inEdgeThreshold | float | <0.0f, INF> | 15.0f | Sufficient edge strength; edges of that strength will always be detected. Default value: 15.0f. |
![]() | inEdgeHysteresis | float | <0.0f, INF> | 5.0f | Value by which the edge threshold is decreased for edge points neighboring with sufficiently strong edges. Default value: 5.0f. |
![]() | inMaxJoiningDistance | float | <0.0f, INF> | 0.0f | Maximal distance between edges that can be joined. Default value: 0.0f. |
![]() | inMinArea | int | <0, INF> | 50 | Minimal area of a detected blob. Default value: 50. |
![]() | inMaxArea | int? | <0, INF> | Maximal area of a detected blob. Default value: ftl::NIL. | |
![]() | inComputeNestingLevels | bool | Flag indicating whether nesting levels should be computed. | ||
![]() | inEdgeClosing | int | <0, INF> | 1 | Radius of enclosing small holes in the detected blobs. Default value: 1. |
![]() | outBlobs | System.Collections.Generic.IList<FilNet.Region> | Blobs extracted from the input image. |
Function Overrides
- SegmentImage_Edges(Image, Int32, Single, Single, Single, Single, Int32, Boolean, Int32, IList<Region>)
- SegmentImage_Edges(Image, Int32, Single, Single, Single, Single, Int32, Boolean, Int32, IList<Region>, NullableRef<List<Int32>>)
- SegmentImage_Edges(Image, Int32, Single, Single, Single, Single, Int32, Boolean, Int32, IList<Region>, Region)
- SegmentImage_Edges(Image, Int32, Single, Single, Single, Single, Int32, Boolean, Int32, IList<Region>, NullableRef<List<Int32>>, Region)
- SegmentImage_Edges(Image, NullableRef<Region>, Int32, Single, Single, Single, Single, Int32, Nullable<Int32>, Boolean, Int32, IList<Region>, Region)
- SegmentImage_Edges(Image, NullableRef<Region>, Int32, Single, Single, Single, Single, Int32, Nullable<Int32>, Boolean, Int32, IList<Region>, NullableRef<List<Int32>>)
- SegmentImage_Edges(Image, NullableRef<Region>, Int32, Single, Single, Single, Single, Int32, Nullable<Int32>, Boolean, Int32, IList<Region>, NullableRef<List<Int32>>, Region)