Pixy2 Quick Links
Basics
Connecting Pixy2 to…
Pixy2 Modes / Programs
Software and Support
Basics
Connecting Pixy2 to…
Pixy2 Modes / Programs
Software and Support
This API can be called through the video member of the Pixy2 object, for example:
Pixy2 pixy; uint8_t r, g, b; pixy.video.getRGB(50, 75, &r, &g, &b); // get red, green, blue values at location x=50, y=75
Firmware versions 3.0.11 and greater will automatically switch to the video program when making requests through the video API.
It is recommended to take a look at the video_get_rgb example in the Arduino Pixy2 library.
Full frame-grabs are only supported through the USB interface and libpixyusb, not through the SPI, I2C or UART serial interfaces (i.e. Arduino). Libpixyusb includes a frame-grab example called _get_raw_frame_. It uses a special function called getRawFrame() that isn't part of the video API.
This is currently the only function supported by the video program. It takes an x and y location in the image, and pointers to red, green and blue variables that get written into by the getRGB() function with the red, green and blue values of the pixel at that location in the image. The individual values of red, green and blue vary from 0 to 255.
The optional saturate argument when set to true (default) will scale all RGB values such that the greatest of the three values (r, g and b) is maximized (saturated) at 255. When set to false, the unmodified RGB values are returned.
Instead of using just one pixel, getRGB() takes a 5×5 section of pixels centered at the x, y location and performs an average of all 25 pixels to obtain a representative result. Locations on the edge or close to the edge of the image are allowed, but will result in fewer pixels being averaged.
The image coordinates are shown below.
The width and height values are both available through pixy.frameWidth and pixy.frameHeight, if you don't want to remember their specific values.
.