Object Detection

Share

A computer vision technique for detecting, identifying and locating objects in images or videos. Once objects are detected, bounding boxes are drawn around them to locate them in the image/video and track how they move.

Object detection algorithms can be used for autonomous driving, security cameras, medical imaging, robotics and other vision-related applications.

Some of these applications require real-time object detection. This makes object detection models very heavy and requires performance solutions to ensure accuracy.

Filter terms by

Glossary Alphabetical filter

Related resources

Qualcomm Snapdragon Quantization
Optimization
deci-guide-llm-evaluation
Generative AI
Blog Featured Images for Social - 1920x1080 (7)
NLP
Share
Add Your Heading Text Here
				
					from transformers import AutoFeatureExtractor, AutoModelForImageClassification

extractor = AutoFeatureExtractor.from_pretrained("microsoft/resnet-50")

model = AutoModelForImageClassification.from_pretrained("microsoft/resnet-50")