Object detection model for grocery checkout with Azure Custom Vision

Azure Custom Vision is an Azure Cognitive Services service that lets you build and deploy your own image classification and object detection models. Image classification models apply labels to an image, while object detection models return the bounding box coordinates in the image where the applied labels can be found.

In the previous article, we created a Custom Vision model for flower classification. In this article, we will build and deploy an object detection model for a grocery store. You will learn how to:

  • Provision a Custom Vision resource.
  • Build and train a custom object detection model in Azure Custom Vision.
  • Use the Smart Labeler to easily tag images.
  • Deploy and consume the model.

To complete the exercise, you will need an Azure subscription. If you don’t have one, you can sign up for an Azure free account.

What is Custom Vision?

Study the following sketch note to learn how Azure Custom Vision works.

Overview of Azure Custom Vision sketch note
Azure Custom Vision

You can find more information and how-to-guides about Custom Vision on Microsoft Learn and Microsoft Docs.

Understand the problem

Every machine learning project starts with a question. Our question is, can we build an automated object detection system for a grocery store that scans and identifies different vegetables?

Collect the data

Now that we know what to ask the model, we want to find data that would help us answer the question that we’re interested in. To build and train our machine learning model, I created an image dataset consisting of 110 images of tomatoes, peppers, and cucumbers. You can download the Vegetables Dataset from my GitHub repository.

Create a Custom Vision Resource

To use the Custom Vision service, you can either create a Custom Vision resource or a Cognitive Services resource. If you plan to use Custom Vision along with other cognitive services, you can create a Cognitive Services resource.

In this exercise, you will create a Custom Vision resource.

  1. Sign in to the Azure Portal and select Create a resource.

  2. Search for Custom Vision and in the Custom Vision card click Create.

  3. Create a Custom Vision resource with the following settings:

    • Create options: Select Both.
    • Subscription: Your Azure subscription.
    • Resource group: Select an existing resource group or create a new one.
    • Name: This would be your custom domain name in your endpoint. Enter a unique name.
    • Training Resource:
      • Location: Choose any available region, for example East US.
      • Pricing tier: You can use the free pricing tier (F0) to try the service, and upgrade later to a paid tier.
    • Prediction Resource:
      • Location: Choose any available region, for example East US.
      • Pricing tier: You can use the free pricing tier (F0) to try the service, and upgrade later to a paid tier.
    Create a Custom Vision resource
  4. Select Review + Create and wait for deployment to complete.

  5. Once the deployment is complete, select Go to resource. Two Custom Vision resources are provisioned, one for training and one for prediction.

Create a new Custom Vision project

You can build and train your model by using the web portal or the Custom Vision SDKs and your preferred programming language. In this article, I will show you how to build an object detection model using the Custom Vision web portal.

  1. Navigate to the Custom Vision portal and sign in.

  2. Create a new project with the following settings:

    • Name: GroceryStore
    • Description: Object detection model for vegetables.
    • Resource: The Custom Vision resource you created in the previous step.
    • Project Types: Object detection
    • Domains: General. Learn more about Custom Vision project domains at Microsoft Docs.
    Create Custom Vision project
  3. Select Create project.

Upload and tag images

  1. In your Custom Vision project, select Add images.

  2. Select and upload all the images in the Train folder you extracted previously.

  3. Open the first image and manually tag the objects that you want the model to learn to recognize.

    Object detection: tomato
  4. Repeat the previous step for the remaining images.

    Object detection: cucumber Object detection: pepper
  5. Explore the images that you have uploaded. There should be 20 images of each category.

  6. Select Add images and upload all the images in the SmartLabeler folder. Do not tag these images. You will train the model and then use the Smart Labeler to easily generate labels for the untagged images.

Train the model

  1. In the top menu bar, click the Train button to train the model using the tagged images.

  2. Then, in the Choose Training Type window, select Quick Training and wait for the training iteration to complete.

    Choose training type

Evaluate the model

  1. When the training finishes, information about the model’s performance is estimated and displayed.

    Iteration 1 - Model performance
  2. The Custom Vision service calculates three metrics:

    • Precision indicates the percentage of the class predictions that were correct.
    • Recall indicates the percentage of class predictions that were correctly identified.
    • Average precision (AP) measures model performance by computing the precision and recall at different thresholds.

Use the Smart Labeler

The Smart Labeler enables you to quickly tag a large number of images. The service uses the latest iteration of the trained model to predict the label of the untagged images. You can then confirm or decline the suggested tag.

  1. Navigate to the Training Images tab and under Tags select Untagged.

  2. Then, click the Get suggested objects button on the left pane.

    Get suggested objects
  3. In the Set Smart Labeler Preference window, select the number of images for which you want suggestions.

    You can generate labels for a portion of images, then train the model and repeat this process. This way, you will improve the model and get better suggestions for the remaining untagged images.
  4. In this article, we will use the Smart Labeler to label all the untagged images. In the Set Smart Labeler Preference window, select All untagged images and then click Get started.

    Set Smart Labeler Preference window
  5. Once the process is complete, you can confirm the suggestions or change the suggested labels and bounding box coordinates manually.

    Smart Labeler

You can learn more about the Smart Labeler at the Custom Vision Service Documentation.

Train and evaluate the new model

  1. In the top menu bar, click the Train button to train the model using the tagged images.

  2. Then, in the Choose Training Type window, select Quick Training and wait for the second training iteration to complete.

  3. Once the training is complete, review the performance metrics of the new model. Based on the following performance metrics, the detected tags are correct, but some objects remain undetected.

    Iteration 2 - Model performance

You can add more images in your model to improve the performance metrics. Learn more about how to improve your object detection model at the Custom Vision Service Documentation.

Test the model

Before publishing our model, let’s test it and see how it performs on new data. We will use the images in the Test folder you extracted previously.

  1. In the top menu bar, select Quick Test.

  2. In the Quick Test window, click the Browse local files button and select a local image. The prediction is shown in the window.

    Object detection - Quick Test Object detection - Quick Test
  3. The images that you uploaded appear in the Predictions tab. You can add these images to your model and then retrain your model.

Deploy the model

Once your model is performing at a satisfactory level, you can deploy it.

Publish the model

  1. In the Performance tab, select the second iteration and then click Publish.

  2. In the Publish Model window, under Prediction resource, select the name of your Custom Vision prediction resource and then click Publish.

    Publish a Custom Vision model
  3. Once your model has been successfully published, you’ll see a Published label appear next to your iteration name in the left sidebar.

Get the ID of your project

In the Custom Vision portal, click the settings icon (⚙) at the top toolbar to view the project settings. Then, under General, copy the Project ID.

Custom Vision project ID

Get the key and endpoint of the prediction resource

Navigate to the Custom Vision portal homepage and select the settings icon (⚙) at the top right. Expand your prediction resource and save the Key and the Endpoint.

Get the key and endpoint of the prediction resource

Test the prediction endpoint in a Python notebook

To create an object detection app with Custom Vision for Python, you’ll need to install the Custom Vision client library. Install the Azure Cognitive Services Custom Vision SDK for Python package with pip:

1
pip install azure-cognitiveservices-vision-customvision

Then, create a new Jupyter Notebook, for example grocery-checkout.ipynb and open it in Visual Studio Code or in your preferred editor.

Want to view the whole notebook at once? You can find it on GitHub.

  1. Import the following libraries.

    1
    2
    3
    4
    5
    6
    
    from azure.cognitiveservices.vision.customvision.prediction import CustomVisionPredictionClient
    from msrest.authentication import ApiKeyCredentials
    from PIL import Image, ImageDraw
    import matplotlib.pyplot as plt
    import numpy as np
    import os
    
  2. In the next cell add this code. Relace <YOUR_PROJECT_ID>, <YOUR_KEY> and <YOUR_ENDPOINT> with the ID of your project, the Key and the Endpoint of your prediction resource, respectively.

    1
    2
    3
    4
    5
    6
    7
    8
    9
    
    # Create variables for your project
    publish_iteration_name = "Iteration2"
    project_id = "<YOUR_PROJECT_ID>"
    # Create variables for your prediction resource
    prediction_key = "<YOUR_KEY>"
    endpoint = "<YOUR_ENDPOINT>"
    
    prediction_credentials = ApiKeyCredentials(in_headers={"Prediction-key": prediction_key})
    predictor = CustomVisionPredictionClient(endpoint, prediction_credentials)
    
  3. Then, use the following code to call the prediction API in Python.

    1
    2
    3
    
    # Detect objects in the test image
    with open(img_file, mode="rb") as test_img:
        results = predictor.detect_image(project_id, publish_iteration_name, test_img)
    
  4. In the next cell, add the following code, which displays the test image, the detected objects and their tags along with their probabilities.

     1
     2
     3
     4
     5
     6
     7
     8
     9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    
    # Create a figure to display the results
    fig = plt.figure(figsize=(8, 8))
    plt.axis('off')
    # Display the image
    draw = ImageDraw.Draw(img)
    # Select line width and color for the bounding box
    lineWidth = int(img_width/100)
    object_colors = {
        "tomato": "yellow",
        "cucumber": "cyan",
        "pepper": "orange"
    }
    # Display the results
    for prediction in results.predictions:
        color = 'white' # default
        if (prediction.probability*100) > 50:
            if prediction.tag_name in object_colors:
                color = object_colors[prediction.tag_name]
            left = prediction.bounding_box.left * img_width
            top = prediction.bounding_box.top * img_height
            height = prediction.bounding_box.height * img_height
            width =  prediction.bounding_box.width * img_width
            # Create a rectangle
            draw.rectangle((left, top, left+width, top+height), outline=color, width=lineWidth)
            # Display tags and probabilities
            plt.annotate(f"{prediction.tag_name}: {prediction.probability * 100 :.2f}%",(left,top), backgroundcolor=color)
    plt.imshow(img)
    

Summary and next steps

In this article, you learned how to use Azure Custom Vision service to create an object detection model. In the next articles, you will learn how to export the models to run offline, add a Custom Vision model in a mobile app and create real-time computer vision solutions!

Clean-up

If you have finished learning, you can delete the resource group from your Azure subscription:

  1. In the Azure Portal, select Resource groups on the right menu and then select the resource group that you have created.

  2. Click Delete resource group.

You May Also Like