Image.reduceNoise

Smooths the contours of an image while still preserving edge information. The algorithm works by replacing each pixel with its neighbor closest in value.

class Image
void
reduceNoise
(
size_t radius = 0
)

Parameters

radius size_t

A neighbor is defined by radius. Use a radius of 0 and reduceNoise selects a suitable radius for you.

Meta