normalizeBuffer method
Normalize documents.
bytes
- image bytes.
width
- image width.
height
- image height.
stride
- image stride.
format
- image format.
points
- document points.
Implementation
@override
Future<NormalizedImage?> normalizeBuffer(Uint8List bytes, int width,
int height, int stride, int format, dynamic points) async {
return _ddnManager.normalizeBuffer(
bytes, width, height, stride, format, points);
}