Object Detection in the Images

Learn to detect objects present in the images using the Azure Computer Vision service.

We'll cover the following...

Introduction

In this lesson, we’re going to build a script to detect objects in an image using the Computer Vision API. The Computer Vision API detects the objects in an image and returns the bounding-boxthe co-ordinates of the objects present in the image. This differs from generating the tags for the image because the tags are generated for contextual terms too (like indoor, outdoor, etc.) which cannot be represented using the bounding-boxes.

Implementation

We’ll be using the ...