applyColorMapAsync function

Future<Mat> applyColorMapAsync(
  1. InputArray src,
  2. int colormap
)

ApplyColorMap applies a GNU Octave/MATLAB equivalent colormap on a given image. colormap: ColormapTypes For further details, please see: https:///docs.opencv.org/master/d3/d50/group__imgproc__colormap.html#gadf478a5e5ff49d8aa24e726ea6f65d15

Implementation

Future<Mat> applyColorMapAsync(InputArray src, int colormap) async => cvRunAsync(
      (callback) => cimgproc.ApplyColorMap_Async(src.ref, colormap, callback),
      matCompleter,
    );