magickEdgeImage method

Future<bool> magickEdgeImage(
  1. double radius
)

Enhance edges within the image with a convolution filter of the given radius. Use a radius of 0 and Edge() selects a suitable radius for you.

This method runs inside an isolate different from the main isolate.

  • radius: the radius of the pixel neighborhood.

Implementation

Future<bool> magickEdgeImage(double radius) async => await _magickCompute(
      _magickEdgeImage,
      _MagickEdgeImageParams(_wandPtr.address, radius),
    );