You are here: Start » AVL.NET » Function Reference » Region » Region Morphology » AVL.DilateRegion_AnyKernel

AVL.DilateRegion_AnyKernel

Performs a morphological dilation on a region using an arbitrary kernel.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

C++
C#
 
public static void DilateRegion_AnyKernel
(
	AvlNet.Region inRegion,
	AvlNet.Region inKernel,
	AvlNet.Region outRegion
)

Parameters

Name Type Range Default Description
inRegionAvlNet.RegionInput region.
inKernelAvlNet.RegionKernel shape (any).
outRegionAvlNet.RegionOutput region.

Description

The operation is a cousin of the DilateRegion filter, yet it uses any proper region selected by user as a structuring element. The center of a kernel is assumed to be at location (width/2,height/2). Refer to the DilateRegion article for further information regarding the morphological dilation itself.

Examples

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.

Hardware acceleration settings may be manipulated with Settings class.

Errors

List of possible exceptions:

Error type Description
DomainError Empty kernel on input in DilateRegion_AnyKernel.

Function Overrides

See also