enableSharpening method

Future<void> enableSharpening(
  1. bool enable
)

Enables/disables image sharpening.

Sharpening makes the video look better by enhancing its clarity. It reduces blurriness in the video.

  • enable: true to enable, false to disable

Implementation

Future<void> enableSharpening(bool enable) {
  return rtc.VideoEffectsSdk.enableSharpening(mediaStreamTrack, enable);
}