detect method

Future<List<DetectionResult>> detect(
  1. String imagePath
)

Detect objects in an image file.

Implementation

Future<List<DetectionResult>> detect(String imagePath) {
  return PaddleDetectionPlatform.instance.detect(imagePath: imagePath);
}