EasyImage::CloseDisk
Performs a closing on an image (dilation followed by erosion) on a circular kernel.
Namespace: Euresys::Open_eVision
[C++]
static void CloseDisk(
EROIBW8
* sourceImage,
EROIBW8
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
static void CloseDisk(
EROIBW16
* sourceImage,
EROIBW16
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
static void CloseDisk(
EROIC24
* sourceImage,
EROIC24
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
static void CloseDisk(
EROIBW8
* sourceImage,
const ERegion
& region,
EROIBW8
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
static void CloseDisk(
EROIBW16
* sourceImage,
const ERegion
& region,
EROIBW16
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
static void CloseDisk(
EROIC24
* sourceImage,
const ERegion
& region,
EROIC24
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
[[deprecated]]
static void CloseDisk(
EROIBW1
* sourceImage,
EROIBW1
* destinationImage,
OEV_UINT32 halfOfKernelWidth
)
Parameters
sourceImage
Pointer to the source image/ROI.
destinationImage
Pointer to the destination image/ROI. If NULL
(default), this operation is destructive (i.e. applied to the source image).
halfOfKernelWidth
Half width of the kernel minus one (by default, halfOfKernelWidth
=
1
; 0
is allowed).
region
Region to apply the function on.
EasyImage.CloseDisk
Performs a closing on an image (dilation followed by erosion) on a circular kernel.
Namespace: Euresys.Open_eVision
[C#]
static void CloseDisk(
EROIBW8
sourceImage,
EROIBW8
destinationImage,
uint halfOfKernelWidth
)
static void CloseDisk(
EROIBW16
sourceImage,
EROIBW16
destinationImage,
uint halfOfKernelWidth
)
static void CloseDisk(
EROIC24
sourceImage,
EROIC24
destinationImage,
uint halfOfKernelWidth
)
static void CloseDisk(
EROIBW8
sourceImage,
ERegion
region,
EROIBW8
destinationImage,
uint halfOfKernelWidth
)
static void CloseDisk(
EROIBW16
sourceImage,
ERegion
region,
EROIBW16
destinationImage,
uint halfOfKernelWidth
)
static void CloseDisk(
EROIC24
sourceImage,
ERegion
region,
EROIC24
destinationImage,
uint halfOfKernelWidth
)
[Obsolete]
static void CloseDisk(
EROIBW1
sourceImage,
EROIBW1
destinationImage,
uint halfOfKernelWidth
)
Parameters
sourceImage
Pointer to the source image/ROI.
destinationImage
Pointer to the destination image/ROI. If NULL
(default), this operation is destructive (i.e. applied to the source image).
halfOfKernelWidth
Half width of the kernel minus one (by default, halfOfKernelWidth
=
1
; 0
is allowed).
region
Region to apply the function on.
EasyImage.CloseDisk
Performs a closing on an image (dilation followed by erosion) on a circular kernel.
Module: open_evision
[Python]
@staticmethod
CloseDisk(
sourceImage: EROIBW8
destinationImage: EROIBW8
halfOfKernelWidth: int
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW8
destinationImage: EROIBW8
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW8
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW16
destinationImage: EROIBW16
halfOfKernelWidth: int
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW16
destinationImage: EROIBW16
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW16
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIC24
destinationImage: EROIC24
halfOfKernelWidth: int
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIC24
destinationImage: EROIC24
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIC24
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW8
region: ERegion
destinationImage: EROIBW8
halfOfKernelWidth: int
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW8
region: ERegion
destinationImage: EROIBW8
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW8
region: ERegion
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW16
region: ERegion
destinationImage: EROIBW16
halfOfKernelWidth: int
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW16
region: ERegion
destinationImage: EROIBW16
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIBW16
region: ERegion
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIC24
region: ERegion
destinationImage: EROIC24
halfOfKernelWidth: int
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIC24
region: ERegion
destinationImage: EROIC24
) -> None
@staticmethod
CloseDisk(
sourceImage: EROIC24
region: ERegion
) -> None
Parameters
sourceImage
Pointer to the source image/ROI.
destinationImage
Pointer to the destination image/ROI. If NULL
(default), this operation is destructive (i.e. applied to the source image).
halfOfKernelWidth
Half width of the kernel minus one (by default, halfOfKernelWidth
=
1
; 0
is allowed).
region
Region to apply the function on.