Search⌘ K
AI Features

Object Detector Using SDK - Create the Custom Vision Project

Explore how to create a custom object detection project using Azure's Custom Vision SDK. Learn to set up training and prediction clients, create projects and tags, and prepare datasets to detect and identify objects within images.

Introduction

In this lesson, we are going to build an object detection model that will detect and identify the objects present in the images with their location in the image.

Dependencies

To work with this chapter and run the code snippets on your local machine, you would need the following packages to be installed:

  • azure-cognitiveservices-vision-customvision

To know how to install the packages, please visit the Appendix section.

Dataset

We can download our dataset by clicking the download button below:

Object Detection Dataset.rar

Once the datasets are downloaded, we’ll extract the ZIP files and move the “Images” folder into our current working directory. ...