Back to FabImage Library websiteYou are here:
Start »
Function Reference »
Region Morphology »
CloseRegion_AnyKernel
Header: | FIL.h |
Namespace: | fil |
Performs a morphological closing on a region using an arbitrary kernel.
Syntax
C++
C#
void fil::CloseRegion_AnyKernel
(
const fil::Region& inRegion,
const fil::Region& inKernel,
fil::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 CloseRegion 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 CloseRegion article for further information regarding the morphological closing itself.
Examples
Errors
List of possible exceptions:
Error type |
Description |
DomainError |
Empty kernel on input in CloseRegion_AnyKernel. |
See Also
- CloseRegion – Performs a morphological closing on a region using selected predefined kernel.