RegisteredWatcher
Last updated
Was this helpful?
Last updated
Was this helpful?
Registered watcher objects are plain objects with a few convenience methods and properties. These objects can only be obtained via the method (for the time being), and all watcher management is done through the interface they provide. If watcher management (e.g pausing, resuming, removing, updating) is required by an application, they should be saved in the app's state.
source
(Object): A replica of the object provided to .watchers.add
.
state
(Object): An object representing the current state of the registered watcher.
active
(boolean): Represents whether computer vision processes are active for the watcher in question. Changed by pause
and resume
methods.
onClassification
(Function): Configurable handler for the classification event. See for details.
onLocation
(Function, Optional): Configurable handler for the location event. See for details.
channel
(Object): Channel to use to send data to the watcher past the point of initialization
Note that all of these methods return a promise with no resolve value.
Pauses computer vision activity (classification, location) for the registered watcher.
Resumes computer vision activity (classification, location) for the registered watcher.
Removes the registered watcher.
Replaces the shape of a registered watcher with the new one provided.
Sends data to be acted upon by all listeners registered in the watcher. Mainly for use with custom watchers. Can be anything valid according to the method
Adding and removing watchers can have an impact on performance. If you intend to reuse the same watcher, consider using the and methods instead.