java.lang.Object | ||
↳ | com.google.android.gms.vision.Detector<java.lang.Object> | |
↳ | com.google.android.gms.vision.MultiDetector |
A multi-detector is used to combine multiple detectors, so that multiple detectors can be used together on a frame or frames received from a source within a pipeline. Each detector is run separately on each associated frame.
For example, the code below creates and starts a pipeline that continuously receives preview frames from a camera source, runs two different detectors on each frame, and delivers results to associated processors.
fooDetector.setProcessor(new MyFooProcessor());
barDetector.setProcessor(new MyBarProcessor());
MultiDetector multiDetector = new MultiDetector.Builder()
.add(fooDetector)
.add(barDetector)
.build();
CameraSource cameraSource = new CameraSource.Builder(context, multiDetector)
.build()
.start();
Where "fooDetector" is a DetectorNested Classes | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
MultiDetector.Builder | Builder for creating MultiDetector instances. |
Public Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
Runs detection on the supplied frame with each underlying detector, returning the combined
detection results from all detectors.
| |||||||||||
Indicates whether the detector has all of the required dependencies available locally in order
to do detection.
| |||||||||||
Releases the underlying resources associated with the multi-detector and its underlying
detectors.
| |||||||||||
This method is not supported on MultiDetector.
|
[Expand]
Inherited Methods | |||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|
![]() | |||||||||||
![]() |
Runs detection on the supplied frame with each underlying detector, returning the combined detection results from all detectors.
Parameters | |
---|---|
frame |
Frame
|
Returns | |
---|---|
SparseArray<Object> |
mapping of int to detected object, where the int domain represents the ID of the associated item. If tracking is enabled, as the same item is detected in consecutive frames, the detector will return the same ID for that item. |
Throws | |
---|---|
IllegalStateException |
This indicates that the results from the underlying detectors could not be combined, because the same ID was associated with different detected items. This likely means that there is a bug with one of the detectors, in that it did not translate its detected item IDs to the global ID space. |
Indicates whether the detector has all of the required dependencies available locally in order to do detection.
When an app is first installed, it may be necessary to download required files. If this returns false, those files are not yet available. Usually this download is taken care of at application install time, but this is not guaranteed. In some cases the download may have been delayed.
If your code has added a processor, an indication of the detector operational state is also
indicated with the detectorIsOperational()
method. You can
check this in your app as it processes detection results, and can convey this state to the user
if appropriate.
Returns | |
---|---|
boolean |
true if the detector is operational, false if the dependency download is in progress |
Releases the underlying resources associated with the multi-detector and its underlying detectors.
This method is not supported on MultiDetector. Instead, processor instances may be set on each underlying detector that is added in creating this MultiDetector.
Parameters | |
---|---|
processor |
Processor
|
Throws | |
---|---|
UnsupportedOperationException |