You are here: Start » FIL.NET » Invoke.SegmentImage_Gray
Segments an image into blobs examining differences between neighbouring pixels values.
Namespace: | Fil |
---|---|
Assembly: | FilNet.dll |
Syntax
C++
C#
public static void SegmentImage_Gray ( Fil.Image inImage, Optional<Fil.Region> inRoi, float inMaxDifference, Fil.BlobsDifferenceMeasure inDifferenceMeasure, int inMinArea, Optional<int> inMaxArea, List<Fil.Region> outBlobs )
Parameters
Name | Type | Range | Default | Description | |
---|---|---|---|---|---|
![]() | inImage | Fil.Image | Image from which blobs are extracted. | ||
![]() | inRoi | Ftl.Optional<Fil.Region> | Range of pixels to be processed. Default value: ftl::NIL. | ||
![]() | inMaxDifference | float | <0.0f, INF> | 5.0f | Maximal difference between two neighbouring blobs to be merged. Default value: 5.0f. |
![]() | inDifferenceMeasure | Fil.BlobsDifferenceMeasure | Neighbour | Measure of blobs difference. Default value: Neighbour. | |
![]() | inMinArea | int | <0, INF> | 50 | Minimal area of a blob. Default value: 50. |
![]() | inMaxArea | Ftl.Optional<int> | <0, INF> | Maximal area of a blob. Default value: ftl::NIL. | |
![]() | outBlobs | System.Collections.Generic.List<Fil.Region> | Blobs extracted from the input image. |