PeiLinNormalizationAsync static method

Future<Mat> PeiLinNormalizationAsync(
  1. InputArray I, {
  2. OutputArray? T,
})

Calculates an affine transformation that normalize given image using Pei&Lin Normalization.

https://docs.opencv.org/4.x/df/d2d/group__ximgproc.html#ga50d064b92f63916f4162474eea22d656

Implementation

static Future<Mat> PeiLinNormalizationAsync(InputArray I, {OutputArray? T}) async {
  T ??= Mat.empty();
  return cvRunAsync0((callback) => ccontrib.cv_ximgproc_PeiLinNormalization(I.ref, T!.ref, callback), (c) {
    return c.complete(T);
  });
}