...

/

Generate Captions and Tags for an Image

Generate Captions and Tags for an Image

Learn how to generate meaningful captions and associate tags for your images using the Azure Computer Vision service.

Introduction

In this lesson, we’re going to have a look at the first image analysis application using the Computer Vision API. We’re going to use an image from the internet and then pass it to our Computer Vision resource. The resource will provide a description of that image based on the visual features present inside the image.

Dependencies

To work with these lessons in this chapter, the following python package dependencies are required:

  • azure-cognitiveservices-vision-computervision
  • pillow

To know how to install these dependencies, refer to the Appendix section.

Implementation

We’ll be using the ...