Re: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Posted by
Carl Mikkelsen
on 2003-11-07 10:59:26 UTC
Geert,
My raster-to-toolpath uses the "image magic" libraries to handle reading
and writing the image files. It will take as input any type of image file
that image magick can read. I've used JPG, but usually have converted
files to PNGs before passing them to the converter software.
To make G-code, though, I'll need some simple tutorial. The format of the
tool path files I generate is simple, but not G-code.
For example, to move to a position:
M xx.xx yy.yy zz.zz PP.PP RR.RR WW.WW
where the x,y,z,P,R,W values are the x, y, and z cartesian axis positions,
and the Pitch, Roll, and yaW angles.
To cut to a position, replace the M with a C. The only difference between
M and C is that there are two commands to set movement speed, and the speed
for C moves can be different (usually slower) than the speed for M moves.
The current raster-to-toolpath code generates code where the P, R, and W
values are all zero.
The description of the complete move language is at:
http://www.foxkid.net/cgi-bin/notebookpage.pl?pdp=/home/httpd/html/&name=/cmm/platform/runlist.page&imagedir=/Processed/Carl%27s%20Projects
I'd be happy to add a G-code output writer, if someone would give me a
pointer to what G-code works for typical CNC setups.
I've gotten some requests for the code. I can provide direct CVS access,
or could see about preparing a tar file for download.
-- Carl
At 11:33 PM 11/6/2003 +0100, you wrote:
My raster-to-toolpath uses the "image magic" libraries to handle reading
and writing the image files. It will take as input any type of image file
that image magick can read. I've used JPG, but usually have converted
files to PNGs before passing them to the converter software.
To make G-code, though, I'll need some simple tutorial. The format of the
tool path files I generate is simple, but not G-code.
For example, to move to a position:
M xx.xx yy.yy zz.zz PP.PP RR.RR WW.WW
where the x,y,z,P,R,W values are the x, y, and z cartesian axis positions,
and the Pitch, Roll, and yaW angles.
To cut to a position, replace the M with a C. The only difference between
M and C is that there are two commands to set movement speed, and the speed
for C moves can be different (usually slower) than the speed for M moves.
The current raster-to-toolpath code generates code where the P, R, and W
values are all zero.
The description of the complete move language is at:
http://www.foxkid.net/cgi-bin/notebookpage.pl?pdp=/home/httpd/html/&name=/cmm/platform/runlist.page&imagedir=/Processed/Carl%27s%20Projects
I'd be happy to add a G-code output writer, if someone would give me a
pointer to what G-code works for typical CNC setups.
I've gotten some requests for the code. I can provide direct CVS access,
or could see about preparing a tar file for download.
-- Carl
At 11:33 PM 11/6/2003 +0100, you wrote:
>Carl,
>
>Would it be suitible to convert like jpegs into a raster toolpath?
>
>Do you need special libraries, or are standard linux libraries ok?
>
>Geert
>
Discussion Thread
d_bobzien
2003-11-03 19:06:55 UTC
3D Text Carving
Robert Campbell
2003-11-03 20:06:15 UTC
Re: [CAD_CAM_EDM_DRO] 3D Text Carving
ballendo
2003-11-04 04:20:57 UTC
Re: 3D Text Carving
jcc3inc
2003-11-04 05:53:04 UTC
Re: 3D Text Carving
James Cullins
2003-11-04 06:40:15 UTC
Re: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Fred Smith
2003-11-04 08:06:04 UTC
Re: 3D Text Carving
Carl Mikkelsen
2003-11-04 08:56:50 UTC
Re: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
d_bobzien
2003-11-04 19:32:16 UTC
Re: 3D Text Carving
d_bobzien
2003-11-04 19:33:49 UTC
Re: 3D Text Carving
Tim Goldstein
2003-11-04 21:01:01 UTC
RE: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Fred Smith
2003-11-05 05:30:40 UTC
Re: 3D Text Carving
Donald Kelley
2003-11-05 06:59:11 UTC
RE: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
david scott
2003-11-05 07:41:12 UTC
RE: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Carl Mikkelsen
2003-11-05 17:57:49 UTC
RE: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Geert De Pecker
2003-11-06 16:23:38 UTC
Re: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Carl Mikkelsen
2003-11-07 10:59:26 UTC
Re: [CAD_CAM_EDM_DRO] Re: 3D Text Carving
Donald Kelley
2003-11-07 11:37:59 UTC
RE: [CAD_CAM_EDM_DRO] Re: 3D Text Carving