ImageEn, unit iexUserInteractions

TIERetouchToolInteraction.DenoiseFilterStrength

TIERetouchToolInteraction.DenoiseFilterStrength


Declaration

var DenoiseFilterStrength: Double;


Description

Specify the filter strength for image luminance. Larger values perfectly remove noise, but also decrease image detail. Smaller values preserve details, but also noise
This method perform image denoising using the Non-local Means Denoising algorithm with several computational optimizations. Noise is expected to be a gaussian white noise.

For more information: fastNlMeansDenoisingColored

Default: 10


Example

// Smooth the image
ImageEnView1.RetouchTool.RetouchMode           := iermIEVisionSmooth;
ImageEnView1.RetouchTool.DenoiseFilterStrength := 5;
ImageEnView1.MouseInteractGeneral              := [ miRetouchTool ];