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