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

Invoke.OpenRegion

Performs a morphological opening on a region using a predefined kernel.

Namespace:Avl
Assembly:AvlNet.dll

Syntax

C++
C#
 
public static void OpenRegion
(
	Avl.Region inRegion,
	Avl.KernelShape inKernel,
	int inRadiusX,
	Optional<int> inRadiusY,
	Avl.Region outRegion
)

Parameters

Name Type Range Default Description
inRegionAvl.RegionInput region.
inKernelAvl.KernelShapeKernel shape (predefined).
inRadiusXint<0, INF>1Nearly half of the kernel's width (2*R+1). Default value: 1.
inRadiusYAtl.Optional<int><0, INF>Nearly half of the kernel's height (2*R+1), or same as inRadiusX. Default value: atl::NIL.
outRegionAvl.RegionOutput region.

See also