Object detection identifies and localizes instances of predefined object classes in images and videos.
Object detection is a computer vision and image processing technology focused on identifying instances of semantic object classes (such as humans, buildings, or cars) in digital images and videos. It is closely related to tasks like face detection and pedestrian detection, and it supports a wide range of real-world computer vision applications, including image retrieval and video surveillance. The scope of object detection includes not only locating objects but also classifying them, often using bounding boxes to represent object positions. It is commonly used in tasks such as image annotation, vehicle counting, activity recognition, and face recognition, and it can be integrated with tracking to follow objects over time (e.g., a ball in sports footage or a person in a video). Because training and test data may come from different distributions, the task can be harder due to domain gaps, motivating approaches such as unsupervised domain adaptation to improve performance across domains.
Object detection identifies and localizes instances of predefined object classes in images and videos.
It is used in many computer vision applications, including annotation, counting, recognition, surveillance, and tracking.
Evaluation often relies on bounding-box overlap (e.g., intersection over union) and metrics like precision-recall and mean average precision (mAP).
Domain gaps between training and test data can significantly affect performance, leading to domain adaptation methods.
A computer vision task that finds and localizes instances of semantic object classes in images and videos.
A predefined category of objects such as humans, cars, or buildings that the model is trained to detect.
A rectangular region used to represent the location of a detected object in an image.
A similarity measure between a predicted bounding box and a ground-truth bounding box, computed as the overlap divided by the union of the two boxes.
An evaluation metric that averages average precision across all object classes, commonly used for simultaneous localization and classification.
The mismatch between the data distribution used for training and the distribution encountered during testing, which can reduce detection accuracy.
βCan you explain what "Object detection identifies and localizes instances of predefined object classes in images and videos." means in simple terms?β