A small python program, runs a camera, takes a photo then creates gcode to allow a cnc machine to draw it.
Find a file
2025-04-01 09:09:33 +00:00
GCODE_CHEATSHEET.txt Upload files to "/" 2025-04-01 09:09:23 +00:00
main.py Upload files to "/" 2025-04-01 09:09:23 +00:00
pngToSvgTest.py Upload files to "/" 2025-04-01 09:09:23 +00:00
README.md Upload files to "/" 2025-04-01 09:09:23 +00:00
svg_to_gcode.zip Upload files to "/" 2025-04-01 09:09:23 +00:00
svgToGcodeTest.py Upload files to "/" 2025-04-01 09:09:33 +00:00
test.gcode Upload files to "/" 2025-04-01 09:09:33 +00:00

CNSelfie

CNC machine that draws your selfies!

Requirements

To run this you will need to install opencv-python and an altered version of svg_to_gcode, to do this make sure you dont have any other open-cv versions installed then run:

pip install opencv-python and pip install svg-to-gcode

Once you've installed svg-to-gcode, replace its file (in site-packages) with the zip file in this repo

This should also install numpy if you dont already have that

You might also find knowing a bit about G-Code will be helpful too, I didnt know much about how it actually worked until now, I found this guide very helpful

Todo

  • Allow user to take photos
  • Generate edges from photo
  • Convert edges to vector (probably using potrace)
  • Convert vector to G-Code (give this a look)
  • QoL changes to edge detection