strength property

  1. @TagNumber.new(1)
double get strength

Set strength of the denoise. Enter a value between 0 and 1. The higher the value, the smoother the image. 0 is no denoising. The default is 0.

Implementation

@$pb.TagNumber(1)
$core.double get strength => $_getN(0);
  1. @TagNumber.new(1)
set strength (double v)

Implementation

@$pb.TagNumber(1)
set strength($core.double v) { $_setDouble(0, v); }