PAID: Dither Convert

Do you need consulting from ImageMagick experts and are willing to pay for their expertise? Or are you well versed in ImageMagick and offer paid consulting? If so, post here otherwise post elsewhere for free assistance.
Post Reply
DitherMyImages
Posts: 4
Joined: 2015-04-14T17:58:11-07:00
Authentication code: 6789

PAID: Dither Convert

Post by DitherMyImages »

Hi Everyone, I'm looking for a ImageMagick Consultant who can build me a command line command that will give me the correct dither output that I'm looking for.
Please PM me for details

THANKS!
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PAID: Dither Convert

Post by fmw42 »

I don't think I can help. But have you looked at this page to see if what you need is discussed. see http://www.imagemagick.org/Usage/quantize/
DitherMyImages
Posts: 4
Joined: 2015-04-14T17:58:11-07:00
Authentication code: 6789

Re: PAID: Dither Convert

Post by DitherMyImages »

fmw42 wrote:I don't think I can help. But have you looked at this page to see if what you need is discussed. see http://www.imagemagick.org/Usage/quantize/
Im on it right now... Im not getting the results i want

Thanks for the link regardless :)
User avatar
fmw42
Posts: 25562
Joined: 2007-07-02T17:14:51-07:00
Authentication code: 1152
Location: Sunnyvale, California, USA

Re: PAID: Dither Convert

Post by fmw42 »

There are lots of different dither methods there. I was hoping that one would be what you needed.
User avatar
dlemstra
Posts: 1570
Joined: 2013-05-04T15:28:54-07:00
Authentication code: 6789
Contact:

Re: PAID: Dither Convert

Post by dlemstra »

It might help if you specify what you consider the 'correct' output.
.NET + ImageMagick = Magick.NET https://github.com/dlemstra/Magick.NET, @MagickNET, Donate
DitherMyImages
Posts: 4
Joined: 2015-04-14T17:58:11-07:00
Authentication code: 6789

Re: PAID: Dither Convert

Post by DitherMyImages »

dlemstra wrote:It might help if you specify what you consider the 'correct' output.

Sorry dlemstra, I was going to send over the images to someone once I heard back. Since we are laser engraving , the photo needs to be dithered in halftones , since any grayscale in the image will simply be converted by the laser driver and cause unreliable results.

The photo also needs to be between 500dpi and 1000dpi

The photo I'm posting is the unedited version and the correctly dithered version that engraves very well.

Thanks!


Image
Image
Last edited by DitherMyImages on 2015-04-15T04:29:25-07:00, edited 1 time in total.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: PAID: Dither Convert

Post by snibgo »

These are two different photos, most clearly seen by comparing feet. Posting the same photo before/after treatment would help.

The "after" photo also seems to be heavily sharpened.
snibgo's IM pages: im.snibgo.com
DitherMyImages
Posts: 4
Joined: 2015-04-14T17:58:11-07:00
Authentication code: 6789

Re: PAID: Dither Convert

Post by DitherMyImages »

snibgo wrote:These are two different photos, most clearly seen by comparing feet. Posting the same photo before/after treatment would help.

The "after" photo also seems to be heavily sharpened.
Sorry , I changed the link to the correct file...

There may be a few things going on with the image that are outside of my scope and understanding. The software we use to convert this image is designed by the laser manufacturer and they obviously do not divulge any of the algorithm. It doesn't need to be exactly the same but dither pattern works extremely well when engraved.

Thanks!
User avatar
glennrp
Posts: 1147
Joined: 2006-04-01T08:16:32-07:00
Location: Maryland 39.26.30N 76.16.01W

Re: PAID: Dither Convert

Post by glennrp »

I couldn't reproduce your output exactly, but here are a couple of things you can try:

Code: Select all

convert original.jpg -gamma 1.5 -negate -colorspace gray -ordered-dither 6x1 halftone.jpg

convert original.jpg -gamma 1.5 -charcoal 3x2 -negate -colorspace gray -ordered-dither 6x1 charcoal.jpg
Post Reply