normalizeBuffer method

Future<NormalizedImage?> normalizeBuffer(
  1. Uint8List bytes,
  2. int width,
  3. int height,
  4. int stride,
  5. int format,
  6. dynamic points,
)

Normalize the image

Implementation

Future<NormalizedImage?> normalizeBuffer(Uint8List bytes, int width,
    int height, int stride, int format, dynamic points) async {
  return FlutterDocumentScanSdkPlatform.instance
      .normalizeBuffer(bytes, width, height, stride, format, points);
}