You are here: Start » FIL.NET » FIS.SegmentImage_Gray_Tiled Method

FIS.SegmentImage_Gray_Tiled Method

Segments an image into blobs examining differences between pixels values, first pass is tiled.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void SegmentImage_Gray_Tiled
(
	FilNet.Image inImage,
	FilNet.BlobMergingMethod inMergingMethod,
	FilNet.RegionConnectivity inConnectivity,
	int inMaxDifference,
	int inHysteresis,
	bool inTonalDrift,
	bool inDirectional,
	int inMinArea,
	IList<FilNet.Region> outBlobs
)

Parameters

Name Type Range Default Description
inImageFilNet.ImageInput image.
inMergingMethodFilNet.BlobMergingMethodNeighborDefines a criterion by which two pixels can be merged into one blob. Default value: Neighbor.
inConnectivityFilNet.RegionConnectivity
inMaxDifferenceint<0, INF>5Maximal tonal difference that allows two pixels to be merged into one blob. Default value: 5.
inHysteresisintChange of MaxDifference between first and second iteration.
inTonalDriftboolTrueWhen 'True' blobs can be merged even if the illumination is not even. Default value: True.
inDirectionalboolWhen 'True' the filter can segment results of GradientDirAndPresenceImage.
inMinAreaint<0, INF>20Minimal area of a blob that may be accepted. Default value: 20.
outBlobsSystem.Collections.Generic.IList<FilNet.Region>

Function Overrides

See also