Back to Adaptive Vision Library websiteYou are here:
Start »
Function Reference »
Region Morphology »
OpenRegion_AnyKernel
| Header: | AVL.h |
| Namespace: | avl |
Performs a morphological opening on a region using an arbitrary kernel.
Syntax
C++
C#
void avl::OpenRegion_AnyKernel
(
const avl::Region& inRegion,
const avl::Region& inKernel,
avl::Region& outRegion
)
Parameters
|
Name |
Type |
Default |
Description |
 |
inRegion |
const Region& |
|
Input region |
 |
inKernel |
const Region& |
|
Kernel shape (any) |
 |
outRegion |
Region& |
|
Output region |
Description
The operation is a cousin of the OpenRegion 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 OpenRegion article for further information regarding the morphological opening itself.
Examples
Errors
List of possible exceptions:
| Error type |
Description |
| DomainError |
Empty kernel on input in OpenRegion_AnyKernel. |
See Also
- OpenRegion – Performs a morphological opening on a region using a predefined kernel.