Search found 25563 matches

by fmw42
2010-04-13T09:21:19-07:00
Forum: Users
Topic: Removing noise
Replies: 7
Views: 16624

Re: Removing noise

try my script, isonoise, at link below:

isonoise -r 2 -t 10 1zx8jrs.jpg 1zx8jrs_iso_r2_t10.jpg
Image


isonoise -r 2 -t 5 1zx8jrs.jpg 1zx8jrs_iso_r2_t5.jpg
Image
by fmw42
2010-04-13T08:50:29-07:00
Forum: Users
Topic: Convert from eps with transparent background to png
Replies: 10
Views: 56249

Re: Convert from eps with transparent background to png

I don't really know too much about vector formats. I am told you can change the device in the delegates.xml file so that you don't need to change to rgb. But I don't know what is needed. Perhaps one of the IM folks can clarify further.
by fmw42
2010-04-12T18:55:07-07:00
Forum: Users
Topic: Blurring image edges ... sort of.
Replies: 1
Views: 4791

Re: Blurring image edges ... sort of.

see variable blur http://www.imagemagick.org/Usage/mapping/#blur

also see my script, variableblur, at the link below
by fmw42
2010-04-12T18:10:34-07:00
Forum: Users
Topic: Convert from eps with transparent background to png
Replies: 10
Views: 56249

Re: Convert from eps with transparent background to png

this works for me with a transparent eps that is cmyk

convert -colorspace rgb test.eps test.png

what version of IM are you using? if old, perhaps upgrade.

also you could post a link to your image and others could test it.
by fmw42
2010-04-12T15:27:59-07:00
Forum: Users
Topic: Getting no feedback from compare command.
Replies: 8
Views: 13538

Re: Getting no feedback from compare command.

sorry I don't use API, just command line and don't use PC, but Mac. But I presume it would be:

strMsg = imgMagick.Compare("-metric", "PSNR", "c:\21.jpg", "c:\222.jpg", "null:")
by fmw42
2010-04-12T11:16:54-07:00
Forum: Users
Topic: Simple Image Matching
Replies: 3
Views: 9634

Re: Simple Image Matching

see example at viewtopic.php?f=1&t=14613&p=51076&hilit ... ric#p51076

if necessary add -dissimilarity-threshold 1 to the command to force it to continue to the end if it stops prematurely due to to much difference
by fmw42
2010-04-12T09:35:08-07:00
Forum: Users
Topic: Getting no feedback from compare command.
Replies: 8
Views: 13538

Re: Getting no feedback from compare command.

if you supply a third image, you will not get any messages, just the difference image. But if you specify null: for the third image, then you get the metric statistics.

PS what version of IM are you using? if old, perhaps you need to upgrade.
by fmw42
2010-04-11T21:41:07-07:00
Forum: Bugs
Topic: Bug in modulate with HDRI (6.6.0-9)
Replies: 9
Views: 18641

Re: Bug in modulate with HDRI (6.6.0-9)

The modulate color space was changed. see http://www.imagemagick.org/Usage/color/#modulate_colorspace "Before IM v6.4.0-10 the "-modulate" actually did use HSB color space rather than HSL colorspace. This was changed because of a bug report by a user about the above situation." &...
by fmw42
2010-04-11T16:01:39-07:00
Forum: Users
Topic: Getting no feedback from compare command.
Replies: 8
Views: 13538

Re: Getting no feedback from compare command.

in command line

compare -metric rmse image1 image2 null:

returns to terminal
by fmw42
2010-04-11T16:00:01-07:00
Forum: Developers
Topic: Conversion Problems from CMYK
Replies: 8
Views: 25030

Re: Conversion Problems from CMYK

try

convert -colorspace RGB image.pdf image.png
by fmw42
2010-04-09T16:54:15-07:00
Forum: Users
Topic: Mogrify, Internet Explorer and GIF images
Replies: 4
Views: 10067

Re: Mogrify, Internet Explorer and GIF images

Are all the tifs the same size? Are the delays between frames consistent? Does it have zero delay. If not then you may need to coalesce and/or make all the delays consistent. Also many people have complained that IE 7 does not show animations well. Search the forum, there has been at least one recen...
by fmw42
2010-04-09T13:49:47-07:00
Forum: Users
Topic: composite three images goes wrong
Replies: 3
Views: 6769

Re: composite three images goes wrong

I am not sure I understand what you are doing with 3 image composite. The third must be a mask. see http://www.imagemagick.org/Usage/compose/#mask Perhaps you can post links to your input and output images. However, the only way to get the images the same size is to measure them via size=`convert im...
by fmw42
2010-04-09T09:53:29-07:00
Forum: Users
Topic: Mogrify, Internet Explorer and GIF images
Replies: 4
Views: 10067

Re: Mogrify, Internet Explorer and GIF images

what was your mogrify command?

try coalescing the animation frames and rebuilding?

convert animation.gif -coalesce animation.gif

try other disposal methods

see

http://www.imagemagick.org/Usage/anim_basics/
http://www.imagemagick.org/Usage/anim_opt/
http://www.imagemagick.org/Usage/anim_mods/