applyCustomColorMapAsync function

Future<Mat> applyCustomColorMapAsync(
  1. InputArray src,
  2. InputArray userColor
)

ApplyCustomColorMap applies a custom defined colormap on a given image.

For further details, please see: https:///docs.opencv.org/master/d3/d50/group__imgproc__colormap.html#gacb22288ddccc55f9bd9e6d492b409cae

Implementation

Future<Mat> applyCustomColorMapAsync(InputArray src, InputArray userColor) async => cvRunAsync(
      (callback) => cimgproc.ApplyCustomColorMap_Async(src.ref, userColor.ref, callback),
      matCompleter,
    );