EasyImage::BiLevelMorphoGradientDisk
Computes the morphological gradient of a bilevel image In a bilevel image, pixel value 0 is considered as black, and any other value is considered as white. using a quasi-circular kernel.
Namespace: Euresys::Open_eVision
[C++]
static void BiLevelMorphoGradientDisk(
EROIBW8
* sourceImage,
EROIBW8
* 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).
Remarks
The morphological gradient is the difference between the dilation and the erosion of the image, using the same structuring element.
EasyImage.BiLevelMorphoGradientDisk
Computes the morphological gradient of a bilevel image using a quasi-circular kernel.
Namespace: Euresys.Open_eVision
[C#]
static void BiLevelMorphoGradientDisk(
EROIBW8
sourceImage,
EROIBW8
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).
Remarks
The morphological gradient is the difference between the dilation and the erosion of the image, using the same structuring element.
EasyImage.BiLevelMorphoGradientDisk
Computes the morphological gradient of a bilevel image using a quasi-circular kernel.
Module: open_evision
[Python]
@staticmethod
BiLevelMorphoGradientDisk(
sourceImage: EROIBW8
destinationImage: EROIBW8
halfOfKernelWidth: int
) -> None
@staticmethod
BiLevelMorphoGradientDisk(
sourceImage: EROIBW8
destinationImage: EROIBW8
) -> None
@staticmethod
BiLevelMorphoGradientDisk(
sourceImage: EROIBW8
) -> 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).
Remarks
The morphological gradient is the difference between the dilation and the erosion of the image, using the same structuring element.