Skip to content

Object Detection using Azure Cognitive Service for Computer Vision

Notifications You must be signed in to change notification settings

SyedAanif/object-detection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

object-detection

Object Detection using Azure Cognitive Service for Computer Vision

Introduction

Object detection is a form of machine learning based computer vision in which a model is trained to recognize individual types of objects in an image, and to identify their location in the image.

An object detection model returns the following information:

  • The class of each object identified in the image.
  • The probability score of the object classification (which you can interpret as the confidence of the predicted class being correct).
  • The coordinates of a bounding box for each object.

Screenshot 2023-05-20 182430

Screenshot 2023-05-20 182303

Object Detection belongs to advanced computer vision and can be performed in the following ways:

In this project we will be utilising Azure Computer Vision service to process images for object-detection.

Pre-requisites

Steps to perform Object-Detection

  1. Sign-in to your Microsoft Azure account.

  2. Create a Resource Group (in a region closest to your location) to logically contain your Azure Resources.

    Screenshot 2023-05-20 184826

  3. Create a Computer Vision service inside the resource group created above.

    Screenshot 2023-05-20 185100

  4. Copy the Keys and Endpoint from the Computer Vision resource and substitute them for subscription_key and endpoint respectively. This will be used to authenticate the computer-vision-client to the computer vision resource.

    Screenshot 2023-05-20 185200

    Screenshot 2023-05-20 193145

  5. Run the provided notebook for performing object-detection.