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

FIS.SplitRegionIntoBlobs Method

Splits a region into an array of regions corresponding to its connected components.

Namespace:FilNet
Assembly:FIL.NET.dll

Syntax

public static void SplitRegionIntoBlobs
(
	FilNet.Region inRegion,
	FilNet.RegionConnectivity inConnectivity,
	int inMinBlobArea,
	int? inMaxBlobArea,
	bool inRemoveBoundaryBlobs,
	IList<FilNet.Region> outBlobs
)

Parameters

Name Type Range Default Description
inRegionFilNet.RegionInput region.
inConnectivityFilNet.RegionConnectivityType of connectivity used for the region foreground.
inMinBlobAreaint<0, INF>1Minimal area of a resulting blob. Default value: 1.
inMaxBlobAreaint?<0, INF>Maximal area of a resulting blob. Default value: ftl::NIL.
inRemoveBoundaryBlobsboolFalseFlag indicating whether the blobs on border of the input region should be removed or not. Default value: False.
outBlobsSystem.Collections.Generic.IList<FilNet.Region>

Function Overrides

See also