Detector class

A Simple Detector that handles object detection via Service

All the heavy operations like pre-processing, detection, ets, are executed in a background isolate. This class just sends and receives messages to the isolate.

Properties

hashCode int
The hash code for this object.
no setterinherited
resultsStream StreamController<Map<String, dynamic>>
final
runtimeType Type
A representation of the runtime type of the object.
no setterinherited

Methods

noSuchMethod(Invocation invocation) → dynamic
Invoked when a nonexistent method or property is accessed.
inherited
processFrame(CameraImage cameraImage) → void
Starts CameraImage processing
stop() → void
Kills the background isolate and its detector server.
toString() String
A string representation of this object.
inherited

Operators

operator ==(Object other) bool
The equality operator.
inherited

Static Properties

labelPath String
getter/setter pair
modelPath String
getter/setter pair

Static Methods

start() Future<Detector>
Open the database at path and launch the server on a background isolate..