<< return to Pixycam.com

User Tools

Site Tools


wiki:v1:pixy_lego_block

**This is an old revision of the document!**

  1. Ordered List Item
  2. asdf

Pixy LEGO Block

This page describes the LEGO Pixy block, which is used in the LEGO Mindstorms EV3 Software. Check out the Pixy LEGO Quick Start page for info on how to install the Pixy module in Mindstorms.

The Pixy block appears below, with labels showing the different inputs and outputs:

Parameters

  • Port Selector: use this to select the sensor port 1 through 4 that Pixy is plugged into on your controller brick.
  • Mode Selector: selects between measure and compare modes.
  • Signature: selects the signature or color code you'd like Pixy to search for.
  • Signature Output: outputs the number of blocks that match the signature or color code you specified in the Signature input. Or it outputs the signature number of the detected object if in General Mode (see the description of modes below).
  • X centroid: outputs the X location of the center of the largest object that Pixy has found. The number returned ranges from 0 to 255, with 0 being the rightmost pixel if facing the camera lens.
  • Y centroid: outputs the Y location of the center of the largest object that Pixy found. The number returned is from 0 to 199, with 0 being the topmost pixel.
  • Width: outputs the width of the largest block that Pixy has found. The number returned is from 1 to 256.
  • Height: outputs the height of the largest block that Pixy has found. The number returned is from 1 to 256.
  • Angle: is the angle (in degrees) of the largest object that Pixy has found. Angle information is only available for color codes, otherwise the value is 0.

Operational Modes

Pixy has two main modes of operation: General Mode and Signature Mode. General mode is the default and most common mode. It is selected by setting a 0 for the Signature input. The Signature input is indicated by the number 3 in the block picture above.

General Mode

General mode is selected by setting a 0 for the Signature input. In General Mode, Pixy will report the largest object that it has detected, regardless of which signature or color code describes the object. And the Signature Output tells you the signature or the color code number of the object.

As a simple (somewhat contrived!) example, if you wanted to detect both green and purple dinosaurs, you could train signature 1 on the purple dinosaur and signature 2 on the green dinosaur. General Mode will then tell you if either types of dinosaurs are present. The Signature Output will be 1 if a purple dinosaur is present and is larger in the image than other green dinosaurs in the image. The Signature Output will be 2 if the if a green dinosaur is present and is larger in the image than other purple dinosaurs in the image. In either case, the X, Y, Width and Height outputs will report the location and size of the largest detected dinosaur. Note, that the dinosaurs may be the same physical size, but because one dinosaur is closer to the camera, it will appear larger in the image, and it will be the object that is reported.

Signature Mode

In Signature Mode, Pixy will report the largest object that matches the signature number or color code set in the Signature input (3 in the block diagram above). And the Signature Output tells you how many objects Pixy has detected that match the specified signature or color code.

Similar to the example above, if you had two types of dinosaurs, purple and green, and you trained signature 1 on the purple dinosaur and signature 2 on the green dinosaur, you could restrict detection to only purple dinosaurs by setting the Signature input to 1. And similarly, you could restrict detection to only green dinosaurs by setting the Signature input to 2.

Note that the Signature input can be connected to another output within your program, so you can change the detected signature or color code number during runtime, and Pixy will change what it reports accordingly.

Conditional Blocks

There are several ways to use conditions based on what Pixy detects in your program. Below we describe the different blocks that use “Pixy conditionals”.

Compare Signature

This block available by selecting Compare in the Mode Selector as shown below:

Here is what the Compare Signature block looks like:

Parameters

  • Signature: selects the signature or color code you'd like Pixy to search for.
  • Compare Type: selects the comare operation you would like to use.
  • Threshold Value: the value you wish to compare against the number of detected objects that match the specified signature.
  • Compare Result: outputs the result of the compare operation.
  • Number of Blocks: outputs the number of detected objects that match the specified signature.

Compare Signature mode compares the number of detected objects to the Threshold Value (3) using the selected Compare Type (2). The True/False result is output in Compare Result (4), and the number of signatures is output in Number of Blocks (5) output.

Wait Blocks

These blocks is available through the Wait block, which is one of the Flow Control blocks. There are two options available: Wait Signature Compare and Wait Signature Change.

Wait Signature Compare

This block is available by selecting Compare then Signature as shown below:

Here is what the Wait Signature Compare block looks like:

Parameters

  • Signature: selects the signature or color code you'd like Pixy to search for.
  • Compare Type: selects the compare operation you would like to use.
  • Threshold Value: the value you wish to compare against the number of detected objects that match the specified signature.
  • Number of Blocks: outputs the number of detected objects that match the specified signature.

The Wait Signature Compare block compares the number of detected objects to the Threshold Value (3) using the selected Compare Type (2). If the result is false, the program will be paused. If the result is true, the program will resume execution, and the number of detected objects is output in Number of Blocks (4).

Wait Signature Change

This block is available by selecting Change then Signature as shown below:

Here is what the Wait Signature Change block looks like:

Parameters

  • Signature: selects the signature or color code you'd like Pixy to search for.
  • Amount: selects the amount of change in the number of objects detected.
  • Number of Blocks: outputs the number of detected objects that match the specified signature.

The Wait Change Signature block waits for a change in the number of specified objects detected by Pixy. If the number of objects that match the signature specified in the Signature input (1) changes by the number indicated in the Amount (2) input, the block returns, and the number of detected objects is output in Number of Blocks (3).

Loop Pixy Compare

This block is available through the Loop block, which is one of the Flow Control blocks. Bring it up by selecting Pixy Camera then Signature in the Loop block Mode Selection.

Here is what the Loop Pixy Compare block looks like:

Parameters

  • Signature: selects the signature or color code you'd like Pixy to search for.
  • Compare Type: selects the compare operation you would like to use.
  • Threshold Value: the value you wish to compare against the number of detected objects that match the specified signature.

The Loop Pixy Compare block compares the number of detected objects to the Threshold Value (3) using the selected Compare Type (2). If the result is false, the loop will be continue looping. If the result is true, the loop will exit.

Switch Pixy Compare

This block is available by selecting the Switch block which is one of the Flow Control blocks. Bring it up by selecting Pixy Camera, the Compare then Signature in the Switch block Mode Selection.

Here is what the Switch Pixy Compare block looks like:

Parameters

  • Signature: selects the signature or color code you'd like Pixy to search for.
  • Compare Type: selects the compare operation you would like to use.
  • Threshold Value: the value you wish to compare against the number of detected objects that match the specified signature.

The Switch Pixy Compare block compares the number of detected objects to the Threshold Value (3) using the selected Compare Type (2). If the result is false, the false case is executed. If the result is true, the true case is executed.

wiki/v1/pixy_lego_block.1530305304.txt.gz · Last modified: 2018/06/29 20:48 by pixycam