detectHumanFromBytes method

Future<HumanDetectionResult> detectHumanFromBytes(
  1. Uint8List imageBytes
)

Detect human from image bytes.

Implementation

Future<HumanDetectionResult> detectHumanFromBytes(Uint8List imageBytes) {
  throw UnimplementedError(
    'detectHumanFromBytes() has not been implemented.',
  );
}