analyzeQuality static method

ScanQualityReport analyzeQuality(
  1. Uint8List imageBytes, {
  2. int width = 640,
  3. int height = 480,
})

Analyzes scan image quality (blur, light, skew, contrast).

Returns a comprehensive ScanQualityReport with grade and recommendations.

Implementation

static ScanQualityReport analyzeQuality(
  Uint8List imageBytes, {
  int width = 640,
  int height = 480,
}) {
  return ScanQualityAnalyzer.analyze(
    imageBytes,
    width: width,
    height: height,
  );
}