Search found 3 matches

by culov
2011-07-09T17:31:50-07:00
Forum: MagickWand
Topic: Creating the color-in book filter with MagickWand
Replies: 4
Views: 19903

Re: Creating the color-in book filter with MagickWand

Just to clarify, the third frame in the previous post, is closer to the result than the second, but still a long ways off. There is still far too much black. How can I correct that?
by culov
2011-06-29T11:38:52-07:00
Forum: MagickWand
Topic: Creating the color-in book filter with MagickWand
Replies: 4
Views: 19903

Re: Creating the color-in book filter with MagickWand

Try this for the contrast stretch: status = MagickContrastStretchImage(magick_wand,0,0.5); Pete Thanks that's what I needed to complete the given filter, but unforunately, the end result looks nothing like what I'm looking to achieve. To begin with, the edges are white instead of black, and the ins...
by culov
2011-06-28T23:07:23-07:00
Forum: MagickWand
Topic: Creating the color-in book filter with MagickWand
Replies: 4
Views: 19903

Creating the color-in book filter with MagickWand

I'm trying to recreate the effect here: http://www.imagemagick.org/Usage/photos/#color-in with the identical effect in MagickWand. Here's the command I want to duplicate in with MagickWand: convert holocaust_sm.jpg \ -edge 1 -negate -normalize \ -colorspace Gray -blur 0x.5 -contrast-stretch 0x50% \ ...