Non-signature blocks— that’s something Pixy doesn’t understand. So, motion detection is easily within the realm of Pixy’s processing ability. It may be challenging to do what you describe because when you move Pixy, motion is created in the image. So you’d need to do some kind of interleaving, like this:
1 detect motion
2 move to location of motion
3 stop
4 goto 1
Step 2 needs calibration— you need a good mapping between image coordinates and servo positions, which is doable but challenging!
Motion detection/segmenting is on the list! (we don’t have a date though
Face detection might help! With face detection (and hue-based object detection) you can do something like this (a proportional control loop):
1 find face/object
2 move motors in the direction of the face/object at a speed proportional to the distance from the center of image
3 goto 1
The advantage of this is there’s no interleaving— The camera will just track the face/object continuously. Just don’t shine the laser in people’s eyes!