AI-generated Key Takeaways
-
The ML Kit Object Detection API allows you to identify and track objects within images.
-
This API provides functionalities like object detection and classification, enabling the identification of specific objects and their categories.
-
You can utilize interfaces such as
ObjectDetector
and classes likeDetectedObject
to interact with and retrieve information about detected objects. -
ObjectDetectorOptionsBase
offers customization choices for tailoring the object detection process according to your requirements. -
This API caters to both still image analysis and continuous object tracking in video streams.
Annotations
ObjectDetectorOptionsBase.DetectorMode | The detector mode which indicates whether detection is for single image or for streaming. |
Interfaces
ObjectDetector | An ObjectDetection
client for finding DetectedObject s
in a supplied image. |
Classes
DetectedObject | Represents an object detected by ObjectDetector . |
DetectedObject.Label | Represents an image label of a detected object. |
ObjectDetection | Entry point to get an ObjectDetector
for finding DetectedObject s
in a supplied image. |
ObjectDetectorOptionsBase | Base options for ObjectDetector . |