SmoothImage_Deriche
Smooths an image using Deriche filter.
Applications:Approximation of the gaussian filter, which can be faster for large kernels.
Syntax
C++
Python
def SmoothImage_Deriche( inImage: Image, outImage: Image, /, *, inRoi: Region | None = None, inAlphaX: float = 0.5, inAlphaY: float | None = None ) -> None
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inImage | Image | Input image | ||
![]() |
inRoi | Region | None | None | Range of output pixels to be computed | |
![]() |
inAlphaX | float | 0.001 - ![]() |
0.5 | Horizontal coefficient |
![]() |
inAlphaY | float | None | 0.001 - ![]() |
None | Vertical coefficient |
![]() |
outImage | Image | Output image |
Hardware Acceleration
This operation supports automatic parallelization for multicore and multiprocessor systems.



