You are here: Start » AVL.NET » Invoke.RemoveRegionBlobs

Invoke.RemoveRegionBlobs

Splits a region into blobs, removes blobs not fulfilling the specified condition, and merges the rest back into one region.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void RemoveRegionBlobs
(
	Avl.Region inRegion,
	Avl.RegionConnectivity inConnectivity,
	Avl.RegionFeature inFeature,
	Optional<float> inMinimum,
	Optional<float> inMaximum,
	bool inRemoveBoundaryBlobs,
	Avl.Region outRegion
)

Parameters

Name Type Range Default Description
inRegionAvl.RegionInput region.
inConnectivityAvl.RegionConnectivityType of connectivity used for the region foreground.
inFeatureAvl.RegionFeatureRegion feature value to be computed.
inMinimumAtl.Optional<float><0.0f, INF>1.0fMinimal value of the considered feature. Default value: 1.0f.
inMaximumAtl.Optional<float><0.0f, INF>Maximal value of the considered feature. Default value: atl::NIL.
inRemoveBoundaryBlobsboolFalseFlag indicating whether the blobs on border of the input region should be removed or not. Default value: False.
outRegionAvl.RegionOutput region.

See also