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

AVL.ThickenRegion

Performs a morphological thickening on a region using predefined kernels.

Namespace:AvlNet
Assembly:AVL.NET.dll

Syntax

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

Parameters

Name Type Range Default Description
inRegionAvlNet.RegionInput region.
outRegionAvlNet.RegionOutput region.

Description

The operation performs a morphological thickening. Similarly to other region morphology operations, thickening is conducted using a shape called kernel (or structuring element). There are two kernels: hit kernel and miss kernel, which are passed as parameters to RegionHitAndMissTransform. This operation's result is then added to the input region giving the output region. The filter uses internally predefined kernels, which are dual to those from ThinRegion filter.

See also