SmoothImage_Median_Mask


Replaces each pixel with the median of pixels within a 3x3 rectangular kernel (faster).

Syntax

C++
Python
 
def SmoothImage_Median_Mask(
	inImage: Image,
	outImage: Image,
	/,
	*,
	inRoi: Region | None = None
)
-> None

Parameters

Name Type Default Description
Input value inImage Image Input image
Input value inRoi Region | None None Range of outImage pixels to be computed
Output value outImage Image Output image

Hardware Acceleration

This operation supports automatic parallelization for multicore and multiprocessor systems.