You are here: Start » AVL.NET » AVS.SplitRegionIntoBlobs Method

AVS.SplitRegionIntoBlobs Method

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

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inRegionAvlNet.RegionInput region.
inConnectivityAvlNet.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: atl::NIL.
inRemoveBoundaryBlobsboolFalseFlag indicating whether the blobs on border of the input region should be removed or not. Default value: False.
outBlobsSystem.Collections.Generic.IList<AvlNet.Region>

Function Overrides

See also