DilateBox
Performs a morphological dilation on a box using box kernel.
Syntax
C++
Python
def DilateBox( inBox: Box, /, *, inRadiusX: int = 1, inRadiusY: int | None = None ) -> outBox: Box
Parameters
| Name | Type | Range | Default | Description | |
|---|---|---|---|---|---|
![]() |
inBox | Box | Input box | ||
![]() |
inRadiusX | int | 0 - ![]() |
1 | Horizontal radius of the box kernel |
![]() |
inRadiusY | int | None | 0 - ![]() |
None | Vertical radius of the box kernel |
![]() |
outBox | Box | Dilated box |



