Visual Inspection AI Assembly Inspection inspects products when components come together during some stage of assembling a product. For such inspections, Visual Inspection AI can help you to ensure that components are in the correct location within the overall object, and that each component is not damaged or defective.
PCBs (printed circuit boards) in general are assemblies of components, including through-hole and surface-mounted. Components can be discrete parts placed within the assembly or physical features created within the assembly such as solder joints, glue, or welds. For subassemblies of electronic products, components can be screws, other hardware parts, or whole other subassemblies.
In this lab you will deploy and serve the exported Assembly Inspection solution using sample images.
Model training can take a long time so this lab is paired with Create a Component Anomaly Detection Model using Visual Inspection AI. You are provided with a trained Assembly Inspection model and solution artifact that was created using the same dataset that is used in that lab.
Objectives
In this lab you will learn how to complete the following tasks:
Deploy a trained Assembly Inspection solution artifact.
Perform a batch prediction using an Assembly Inspection solution artifact.
Setup and requirements
Before you click the Start Lab button
Read these instructions. Labs are timed and you cannot pause them. The timer, which starts when you click Start Lab, shows how long Google Cloud resources are made available to you.
This hands-on lab lets you do the lab activities in a real cloud environment, not in a simulation or demo environment. It does so by giving you new, temporary credentials you use to sign in and access Google Cloud for the duration of the lab.
To complete this lab, you need:
Access to a standard internet browser (Chrome browser recommended).
Note: Use an Incognito (recommended) or private browser window to run this lab. This prevents conflicts between your personal account and the student account, which may cause extra charges incurred to your personal account.
Time to complete the lab—remember, once you start, you cannot pause a lab.
Note: Use only the student account for this lab. If you use a different Google Cloud account, you may incur charges to that account.
How to start your lab and sign in to the Google Cloud console
Click the Start Lab button. If you need to pay for the lab, a dialog opens for you to select your payment method.
On the left is the Lab Details pane with the following:
The Open Google Cloud console button
Time remaining
The temporary credentials that you must use for this lab
Other information, if needed, to step through this lab
Click Open Google Cloud console (or right-click and select Open Link in Incognito Window if you are running the Chrome browser).
The lab spins up resources, and then opens another tab that shows the Sign in page.
Tip: Arrange the tabs in separate windows, side-by-side.
Note: If you see the Choose an account dialog, click Use Another Account.
If necessary, copy the Username below and paste it into the Sign in dialog.
{{{user_0.username | "Username"}}}
You can also find the Username in the Lab Details pane.
Click Next.
Copy the Password below and paste it into the Welcome dialog.
{{{user_0.password | "Password"}}}
You can also find the Password in the Lab Details pane.
Click Next.
Important: You must use the credentials the lab provides you. Do not use your Google Cloud account credentials.
Note: Using your own Google Cloud account for this lab may incur extra charges.
Click through the subsequent pages:
Accept the terms and conditions.
Do not add recovery options or two-factor authentication (because this is a temporary account).
Do not sign up for free trials.
After a few moments, the Google Cloud console opens in this tab.
Note: To access Google Cloud products and services, click the Navigation menu or type the service or product name in the Search field.
Activate Cloud Shell
Cloud Shell is a virtual machine that is loaded with development tools. It offers a persistent 5GB home directory and runs on the Google Cloud. Cloud Shell provides command-line access to your Google Cloud resources.
Click Activate Cloud Shell at the top of the Google Cloud console.
Click through the following windows:
Continue through the Cloud Shell information window.
Authorize Cloud Shell to use your credentials to make Google Cloud API calls.
When you are connected, you are already authenticated, and the project is set to your Project_ID, . The output contains a line that declares the Project_ID for this session:
Your Cloud Platform project in this session is set to {{{project_0.project_id | "PROJECT_ID"}}}
gcloud is the command-line tool for Google Cloud. It comes pre-installed on Cloud Shell and supports tab-completion.
(Optional) You can list the active account name with this command:
gcloud auth list
Click Authorize.
Output:
ACTIVE: *
ACCOUNT: {{{user_0.username | "ACCOUNT"}}}
To set the active account, run:
$ gcloud config set account `ACCOUNT`
(Optional) You can list the project ID with this command:
gcloud config list project
Output:
[core]
project = {{{project_0.project_id | "PROJECT_ID"}}}
Note: For full documentation of gcloud, in Google Cloud, refer to the gcloud CLI overview guide.
Task 1. Deploy the exported Assembly Inspection solution artifact
A Visual Inspection AI Assembly Inspection solution artifact container has been created and stored in the Container Registry (gcr.io) for use in this lab. You can deploy these exported solution containers in your own environment, whether that is a Google Cloud VM, an on-premise compute unit, or any other suitable environment that can run Docker containers.
Run and test a CPU based solution artifact locally
In this task you will run a CPU based solution artifact as a docker container locally in the Google Cloud VM. The process shown here uses docker commands to pull, or start the Docker compatible solution artifact container.
The exported solution artifact container uses port 8601 for grpc traffic, port 8602 for http traffic, and port 8603 for Prometheus metric traffic. You can map these ports to locally available ports in the VM environment when starting the container with Docker using the command line switches -v 9000:8602 or -v 3006:8603. You need to map a local port to port 8602 for sending http requests, and another local port to port 8603 if you want to see the metrics logs locally.
Your first step is to connect to the Google Cloud VM. In Cloud Shell, enter the following command to connect to the VM:
This is the Container Registry image ID of a Visual Inspection Assembly Inspection solution artifact that was created using the resistance component demo dataset. This solution artifact will identify resistance components in images.
Define variables for ports used by the solution artifact container:
The reported usage metrics uploaded from the container include:
num_request_processed: the total number of processed requests.
prediction_latency: the prediction latency in one request.
average_prediction_latency: the average prediction latency.
Confirm that the container is running: docker container ls
You should see a container listed that has the image name for your solution artifact.
Once you have started the solution artifact container with the above Docker run command, you can send requests to the running container using the python script below.
Copy the file prediction_script.py to run predictions by calling the Visual Inspection AI rest APIs via the solution artifact container:
The code in this file is displayed below for your reference:
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
import base64 import json import time import re
from absl import app from absl import flags import numpy as np import requests
flags.DEFINE_string('hostname', 'http://localhost', 'The hostname for serving.') flags.DEFINE_string('input_image_file', None, 'The input image file name.') flags.DEFINE_string('output_result_file', None, 'The prediction output file name.') flags.DEFINE_integer('port', None, 'The port of rest api.') flags.DEFINE_integer('num_of_requests', 1, 'The number of requests to send.')
FLAGS = flags.FLAGS
def create_request_body(input_image_file): """Creates the request body to perform api calls.
Args:
input_image_file: String, the input image file name.
Returns:
A json format string of the request body. The format is like below:
{"image_bytes":}
"""
with open(input_image_file, 'rb') as image_file:
encoded_string = base64.b64encode(image_file.read()).decode('utf-8')
request_body = {'image_bytes': str(encoded_string)}
return json.dumps(request_body)
def predict(hostname, input_image_file, port): """Predict results on the input image using services at the given port.
Args:
hostname: String, the host name for the serving.
input_image_file: String, the input image file name.
port: Integer, the port that runs the rest api service.
Returns:
The predicted results in json format.
"""
url = hostname + ':' + str(port) + '/v1beta1/visualInspection:predict'
request_body = create_request_body(input_image_file)
response = requests.post(url, data=request_body)
return response.json()
def compute_latency_percentile(hostname, input_image_file, port, num_of_requests): """Computes latency percentiles of server's prediction endpoint.
Args:
hostname: String, the host name for the serving.
input_image_file: String, the input image file name.
port: Integer, the port that runs the rest api service.
num_of_requests: The number of requests to send.
Returns:
The dictionary of latency percentiles of 75%, 90%, 95%, 99%.
"""
latency_list = []
for _ in range(num_of_requests):
response = predict(hostname, input_image_file, port)
latency_in_ms = float(response['predictionLatency'][:-1])
latency_list.append(latency_in_ms)
latency_percentile = {}
percentiles = [75, 90, 95, 99]
for percentile in percentiles:
latency_percentile[percentile] = np.percentile(latency_list, percentile)
return latency_percentile
def main(\_): if FLAGS.num_of_requests > 1: latency_percentile = compute_latency_percentile(FLAGS.hostname, FLAGS.input_image_file, FLAGS.port, FLAGS.num_of_requests) print(latency_percentile) with open(FLAGS.output_result_file, 'w+') as latency_result: latency_result.write(json.dumps(latency_percentile)) else: start = time.time() results = predict(FLAGS.hostname, FLAGS.input_image_file, FLAGS.port) end = time.time() print('Processed image {} in {}s.'.format(FLAGS.input_image_file, end - start)) print(json.dumps(results, indent=2)) with open(FLAGS.output_result_file, 'w+') as prediction_result: prediction_result.write(json.dumps(results, indent=2))
if **name** == '**main**': flags.mark_flag_as_required('input_image_file') flags.mark_flag_as_required('port') flags.mark_flag_as_required('output_result_file') app.run(main)
Deploy the exported Assembly Inspection solution artifact
Task 2. Serve the exported Assembly Inspection solution artifact
In this task you use the solution artifact to analyze sample images and review the output data that the model detects.
Identifying a defective component
In the VM terminal, run the commands below to copy training images to your Cloud Storage bucket, followed by copying a defective sample image to the VM:
Find a defective component from the cloud storage bucket. In cloud console, go to Navigation menu () > Cloud Storage > Bucket.
In the Cloud Storage Browser, navigate to the bucket named > demo_pcb_images.
Now find and click on the image named image_275_cx98_cy16_r-5.png from the list of the images. You might have to scroll through the list to find this image.
This is a defective component that has a blue rectangle masking the resistor.
In the terminal, run the following commands to install the python envrionment and packages:
This will print out the JSON result data returned by your Visual Inspection AI model. You can inspect the annotation sets and annotations to see the analysis data that is returned. This sample image is one of the images with a defective resistor that has been artificially masked using a blue rectangle on the image.
If you look at the annotation results you can see that Visual Inspection AI has assigned a relatively high confidence score (model defect score) of 0.652963758 for one of the components, parentAnnotationId": "localAnnotations/1000000" indicating that it is probably defective.
The script also stores the prediction result in a file named def_prediction_result.json that is created and saved in the HOME directory of the VM. This file is passed to the script using the flag --output_result_file.
The script calls the solution artifact 10 times and reports the distribution of the response latencies that are returned in the response each time the solution artifact processes an image. The script also stores the latency result in a file named def_latency_result.json that is created and saved in the HOME directory of the VM. This file is passed to the script using the flag --output_result_file.
Identify a defective component
Identifying a non-defective component
In this subtask you use the solution artifact to analyze an image that does not contain a defective component to see how the model response differs from the output for an image containing a defective component.
In the VM terminal, run the commands below to copy a sample image with no defective components to the VM:
Find a non-defective component from the cloud storage bucket. If you are not in Cloud Storage browser, in cloud console, go to Navigation menu () > Cloud Storage > Bucket. In the Cloud Storage Browser, navigate to the bucket named > demo_pcb_images.
Now find and click on the image named image_439_cx31_cy-35_r-4.png from the list of the images. You might have to scroll through the list to find this image.
This is a non-defective component that does not have any defects.
In the terminal, run the following command to send the selected image as a request to the solution artifact container:
This will print out the JSON result data returned by your Visual Inspection AI model. You can inspect the annotation sets and annotations to see that this returns the same general data structures that were returned in the previous request. However this sample image is one of the non-defective images.
If you look at the annotation results you can see that Visual Inspection AI has assigned a relatively low confidence score (model defect score) of 0.0180127025 for one of the components, parentAnnotationId": "localAnnotations/1000000", indicating that it is probably non-defective.
The script also stores the prediction result in a file named non_def_prediction_result.json that is created and saved in the HOME directory of the VM. This file is passed to the script using the flag --output_result_file.
The script calls the solution artifact 10 times and again reports the distribution of the response latencies that are returned in the response each time the solution artifact processes an image. The script also stores the latency result in a file named non_def_latency_result.json that is created and saved in the HOME directory of the VM. This file is passed to the script using the flag --output_result_file.
Identify a non-defective component
Congratulations!
Congratulations! In this lab, you deployed and served a Visual Inspection AI Component Anomaly Detection Solution. You also performed a batch prediction using an Assembly Inspection solution artifact. You can now use the Visual Inspection AI to inspect products when components come together during some stage of assembling a product.
Google Cloud training and certification
...helps you make the most of Google Cloud technologies. Our classes include technical skills and best practices to help you get up to speed quickly and continue your learning journey. We offer fundamental to advanced level training, with on-demand, live, and virtual options to suit your busy schedule. Certifications help you validate and prove your skill and expertise in Google Cloud technologies.
Manual Last Updated July 24, 2024
Lab Last September July 24, 2024
Copyright 2025 Google LLC. All rights reserved. Google and the Google logo are trademarks of Google LLC. All other company and product names may be trademarks of the respective companies with which they are associated.
Labs create a Google Cloud project and resources for a fixed time
Labs have a time limit and no pause feature. If you end the lab, you'll have to restart from the beginning.
On the top left of your screen, click Start lab to begin
Use private browsing
Copy the provided Username and Password for the lab
Click Open console in private mode
Sign in to the Console
Sign in using your lab credentials. Using other credentials might cause errors or incur charges.
Accept the terms, and skip the recovery resource page
Don't click End lab unless you've finished the lab or want to restart it, as it will clear your work and remove the project
This content is not currently available
We will notify you via email when it becomes available
Great!
We will contact you via email if it becomes available
One lab at a time
Confirm to end all existing labs and start this one
Use private browsing to run the lab
Use an Incognito or private browser window to run this lab. This
prevents any conflicts between your personal account and the Student
account, which may cause extra charges incurred to your personal account.
In this lab, you learn how to deploy and test a Visual Inspection AI Component Anomaly Detection solution.