classify method

Future<CardGateResult> classify(
  1. String imagePath
)

Runs one inference on the photo at imagePath.

Throws CardGateException on any failure. Implementations must never report a failure as CardGateLabel.other.

Implementation

Future<CardGateResult> classify(String imagePath) {
  throw UnimplementedError('classify() has not been implemented.');
}