AI Vision#
Introduction#
The AI Vision Sensor can detect and track objects, colors, and AprilTags. This allows the robot to analyze its surroundings, follow objects, and react based on detected visual data.
For the examples below, the configured AI Vision Sensor will be named ai_vision_1
, and the configured Color Signature objects, such as RED_BOX
, will be used in all subsequent examples throughout this API documentation when referring to AiVision
class methods.
Below is a list of all methods:
Getters – Get data from the AI Vision Sensor.
take_snapshot – Captures data for a specific Signature.
installed – Whether the AI Vision Sensor is connected to the EXP Brain.
Properties – Object data returned from take_snapshot.
.exists – Whether the object exists in the current detection as a Boolean.
.width – Width of the detected object in pixels.
.height – Height of the detected object in pixels.
.centerX – X position of the object’s center in pixels.
.centerY – Y position of the object’s center in pixels.
.angle – Orientation of the Color Code in degrees.
.originX – X position of the object’s top-left corner in pixels.
.originY – Y position of the object’s top-left corner in pixels.
.id – Classification or tag ID of the object.
.score – Confidence score for AI Classifications (1–100).
Constructors – Manually initialize and configure the sensors.
take_snapshot#
take_snapshot
filters the data from the AI Vision Sensor’s frame to return a tuple. The AI Vision Sensor can detect configured Color Signatures and Color Codes, AI Classifications, and AprilTags.
Color Signatures and Color Codes must be configured first in the Vision Utility before they can be used with this method.
The tuple stores objects ordered from largest to smallest by width, starting at index 0. Each object’s properties can be accessed using its index. An empty tuple is returned if no matching objects are detected.
Usage:
ai_vision_1.take_snapshot(SIGNATURE)
Parameters |
Description |
---|---|
|
What signature to get data of.
|
|
Optional. Sets the maximum number of objects that can be returned from 1 to 24 (default: 8). |
# Example coming soon
AI Classifications#
The AI Vision Sensor can detect different objects under certain AI Classifications. Depending on the AI Classification model selected when configuring the AI Vision Sensor in the Devices window, different objects will be detected. The currently available models are:
Classroom Elements
ID Number |
AI Classification |
---|---|
0 |
|
1 |
|
2 |
|
3 |
|
4 |
|
5 |
|
6 |
|
7 |
|
8 |
|
V5RC High Stakes
|:——————:|–|
| ID Number | AI Classification |
| 0 | MOBILE_GOAL
|
| 1 | RED_RING
|
| 2 | BLUE_RING
|
V5RC Push Back
|:——————:|–|
| ID Number | AI Classification |
| 0 | BLUE_BLOCK
|
| 1 | RED_BLOCK
|
# Example coming soon
Color Signatures#
A Color Signature is a unique color that the AI Vision Sensor can recognize. These signatures allow the AI Vision Sensor to detect and track objects based on their color. Once a Color Signature is configured, the sensor can identify objects with that specific color in its field of view. Color signatures are used with take_snapshot to process and detect colored objects in real-time.
In order to use a configured Color Signature in a project, its name must be the name of the sensor, two underscores, and then the Color Signature’s name. For example: ai_vision_1__RED_BOX
.
# Example coming soon
Color Codes#
A Color Code is a structured pattern made up of color signatures arranged in a specific order. These codes allow the AI Vision Sensor to recognize predefined patterns of colors. Color Codes are useful for identifying complex objects or creating unique markers for autonomous navigation.
In order to use a configured Color Code in a project, its name must be the name of the sensor, two underscores, and then the Color Code’s name. For example: ai_vision_1__BOX_CODE
.
# Example coming soon
installed#
installed
returns a Boolean indicating whether the AI Vision Sensor is currently connected to the EXP Brain.
True
– The AI Vision Sensor is connected to the EXP Brain.False
– The AI Vision Sensor is not connected to the EXP Brain.
Usage:
ai_vision_1.installed()
Parameters |
Description |
---|---|
This method has no parameters. |
# Display a message if the AI Vision Sensor is connected
if ai_vision_1.installed():
brain.screen.print("Installed!")
Properties#
There are ten properties that are included with each object stored in a tuple after take_snapshot is used.
Some property values are based off of the detected object’s position in the AI Vision Sensor’s view at the time that take_snapshot
was used. The AI Vision Sensor has a resolution of 320 by 240 pixels.
.exists#
.exists
returns a Boolean indicating if the index exists in the tuple or not.
True
– The index exists.False
– The index does not exist.
# Example coming soon
.width#
.width
returns the width of the detected object in pixels, which is an integer between 1 and 320.
# Example coming soon
.height#
.height
returns the height of the detected object in pixels, which is an integer between 1 and 240.
# Example coming soon
.centerX#
.centerX
returns the x-coordinate of the detected object’s center in pixels, which is an integer between 0 and 320.
# Example coming soon
.centerY#
.centerY
returns the y-coordinate of the detected object’s center in pixels, which is an integer between 0 and 240.
# Example coming soon
.angle#
.angle
returns the orientation of the detected Color Code or AprilTag in degrees, which is an integer between 0 and 360.
# Example coming soon
.originX#
.originX
returns the x-coordinate of the top-left corner of the detected object’s bounding box in pixels, which is an integer between 0 and 320.
# Example coming soon
.originY#
.originY
returns the y-coordinate of the top-left corner of the detected object’s bounding box in pixels, which is an integer between 0 and 240.
# Example coming soon
.id#
.id
returns the ID of the detected AI Classification or AprilTag as an integer.
For AI Classifications, see the AI Classification tables for the corresponding IDs.
For an AprilTag, the .id property represents the detected AprilTag’s ID number in the range of 0 to 36. For an AI Classification, the id corresponds to the predefined id as shown below.
# Example coming soon
.score#
.score
returns the confidence score of the detected AI Classification as an integer between 1 and 100.
# Example coming soon
Constructors#
Constructors are used to manually create AiVision
, Colordesc
, and Codedesc
objects, which are necessary for configuring the AI Vision Sensor outside of VEXcode.
AI Vision Sensor#
AiVision
creates an AI Vision Sensor.
Usage
Vision(port, sigs)
Parameters |
Description |
---|---|
|
Which Smart Port the AI Vision Sensor is connected to, from 1 to 12. |
|
Optional. The name of one or more signatures:
|
Example
# Example coming soon
Color Signature#
Colordesc
creates a Color Signature. Up to seven different Color Signatures can be stored on an AI Vision Sensor at once.
Usage:
Colordesc(index, uMin, uMax, uMean, vMin, vMax, vMean, rgb, type)
Parameter |
Description |
---|---|
|
The |
|
The value from |
|
The value from |
|
The value from |
|
The value from |
|
The value from |
|
The value from |
|
The value from |
|
The value from |
In order to obtain the values to create a Color Signature, go to the Vision Utility. Once a Color Signature is configured, copy the parameter values from the Configuration window.
Example
# Example coming soon
Color Code#
Codedesc
creates a Color Code. It requires at least two already defined Color Signatures in order to be used. Up to eight different Color Codes can be stored on a Vision Sensor at once.
Usage:
Codedesc(sig1, sig2, sig3, sig4, sig5)
Parameter |
Description |
---|---|
|
A previously created Color Signature. |
|
A previously created Color Signature. |
|
Optional. A previously created Color Signature. |
|
Optional. A previously created Color Signature. |
|
Optional. A previously created Color Signature. |
Example
# Example coming soon