Back to Adaptive Vision Library website
You are here: Start » Function Reference » Region » Region Morphology » TopHatRegion
TopHatRegion
| Header: | AVL.h |
|---|---|
| Namespace: | avl |
| Module: | FoundationBasic |
Performs a morphological white top hat operation on a region using a predefined kernel.
Syntax
C++
C#
void avl::TopHatRegion ( const avl::Region& inRegion, avl::KernelShape::Type inKernel, int inRadiusX, atl::Optional<int> inRadiusY, avl::Region& outRegion )
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inRegion | const Region& | Input region | ||
![]() |
inKernel | KernelShape::Type | Kernel shape (predefined) | ||
![]() |
inRadiusX | int | 0 - ![]() |
1 | Nearly half of the kernel's width (2*R+1) |
![]() |
inRadiusY | Optional<int> | 0 - ![]() |
NIL | Nearly half of the kernel's height (2*R+1), or same as inRadiusX |
![]() |
outRegion | Region& | Output region |
Errors
List of possible exceptions:
| Error type | Description |
|---|---|
| DomainError | Unsupported kernel in TopHatRegion. |



