You are here: Start » FIL.NET » Invoke.SegmentImage_Gray_Tiled

Invoke.SegmentImage_Gray_Tiled

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

Namespace:Fil
Assembly:FilNet.dll

Syntax

C++
C#
 
public static void SegmentImage_Gray_Tiled
(
	Fil.Image inImage,
	Optional<Fil.Region> inRoi,
	Fil.BlobMergingMethod inMergingMethod,
	Fil.RegionConnectivity inConnectivity,
	int inMaxDifference,
	int inHysteresis,
	bool inTonalDrift,
	bool inDirectional,
	int inMinArea,
	Optional<int> inMaxArea,
	List<Fil.Region> outBlobs
)

Parameters

Name Type Range Default Description
inImageFil.ImageInput image.
inRoiFtl.Optional<Fil.Region>Range of pixels to be processed. Default value: ftl::NIL.
inMergingMethodFil.BlobMergingMethodNeighborDefines a criterion by which two pixels can be merged into one blob. Default value: Neighbor.
inConnectivityFil.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.
inMaxAreaFtl.Optional<int>Minimal area of a blob that may be accepted. Default value: ftl::NIL.
outBlobsSystem.Collections.Generic.List<Fil.Region>

See also