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
Input value inBox Box Input box
Input value inRadiusX int 0 - 1 Horizontal radius of the box kernel
Input value inRadiusY int | None 0 - None Vertical radius of the box kernel
Output value outBox Box Dilated box