ErodeImage
Replaces each pixel with the minimum of pixels within a kernel.
Applications:Thins bright features in an image and thickens dark ones.
Syntax
C++
Python
def ErodeImage( inImage: Image, outImage: Image, /, *, inRoi: Region | None = None, inSourceRoi: Region | None = None, inBorderColor: Pixel | None = None, inKernel: KernelShape = KernelShape.Box, inRadiusX: int = 1, inRadiusY: int | None = None, diagKernel: Region | None = None ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inRoi | Region | None | None | Range of outImage pixels to be computed | |
![]() |
inSourceRoi | Region | None | None | Range of inImage pixels to be considered in computations | |
![]() |
inBorderColor | Pixel | None | None | Color of the imaginary pixels outside the image boundaries | |
![]() |
inKernel | KernelShape | KernelShape.Box | Kernel shape | |
![]() |
inRadiusX | int | 0 - ![]() |
1 | Nearly half of the kernel's width (2*R+1) |
![]() |
inRadiusY | int | None | 0 - ![]() |
None | Nearly half of the kernel's height (2*R+1), or same as inRadiusX |
![]() |
outImage | Image | Output image | ||
![]() |
diagKernel | Region | None | None | Kernel shape |
Hardware Acceleration
This operation is optimized for SSE2 technology for pixels of types: all formats (when inSourceRoi = NIL and inBorderColor = NIL).
This operation is optimized for NEON technology for pixels of types: all formats (when inSourceRoi = NIL and inBorderColor = NIL).
This operation supports automatic parallelization for multicore and multiprocessor systems.




