magickGetImageStatistics method

Future<ChannelStatistics?> magickGetImageStatistics()

Returns statistics for each channel in the image. The statistics include the channel depth, its minima and maxima, the mean, the standard deviation, the kurtosis and the skewness.

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

Implementation

Future<ChannelStatistics?> magickGetImageStatistics() async =>
    await _magickCompute(
      _magickGetImageStatistics,
      _wandPtr.address,
    );