The third and final project from this years maker faire was a webcam capture program that would easily digitise children's drawings and then send them down to the laser cutter for engraving. The webcam holder with led lighting to illuminate the drawing. I used a c# wrapper for the open CV library to capture images from the webcam, a little bit of filtering to remove pixels that weren't black enough. The image was then converted to G Code, and transferred to a GRBL controller that was wired into the Greyfin laser cutter . The G Code simply drives the laser to the next black pixel and burns a single dot for each pixel, repeat for each black pixel in the image. The program ended up being a bit of a mess as it evolved throughout the course of the weekend. It's got some nice features though such as the ability to capture or load an image for engraving, automatic detection of GRBL devices on the serial ports and free text sending to control GRBL directly. I'v