Dear Edward,
Thank you again for taking your time to respond. I believe I understand what you have provided, but I feel I’m still not being clear.
My object will be only one matched signature, and I want the same object to be detected 50 time per frame (all block information) times 50fps. So I guess what I am asking is: 2500 blocks for the same object in one second.
Can I some how capture all this data and send it into an array for later modification?
How can the “Hello World” be modified to capture all 2500 block in one second for the SAME object?
" void loop()
{
static int i = 0;
int j;
uint16_t blocks;
char buf[32];
blocks = pixy.getBlocks();
if (blocks)
{
i++;
if (i%50==0)
{
sprintf(buf, “Detected %d:\n”, blocks);
Serial.print(buf);
for (j=0; j<blocks; j++)
{
sprintf(buf, “ block %d: “, j);
Serial.print(buf);
pixy.blocks[j].print();
}
}
}
}
"
Still reading and digesting your provided link.
Again, Thank you very much for all your time and effort.
Sincerely,
Alexander