Search found 12163 matches

by snibgo
2010-04-23T09:29:12-07:00
Forum: Users
Topic: Problem with convert - tiff to jpg
Replies: 21
Views: 46398

Re: Problem with convert - tiff to jpg

So you want to disregard the transparency in one image, and convert the transparency in the other to white? Yes, you need two different commands.
by snibgo
2010-04-23T09:14:04-07:00
Forum: Users
Topic: Problem with convert - tiff to jpg
Replies: 21
Views: 46398

Re: Problem with convert - tiff to jpg

Yes, Gimp shows the same: the lid is opaque, and the rest is transparent.
by snibgo
2010-04-23T08:59:26-07:00
Forum: Users
Topic: Problem with convert - tiff to jpg
Replies: 21
Views: 46398

Re: Problem with convert - tiff to jpg

What program did you use to display the images? Using Gimp on alpha2.tif, I find the pixels of the jar (and lettering and shadow) are transparent. But Gimp gives a warning: "alpha channel type not defined for file D:\web\im\alpha2.tif. Assuming alpha is not premultiplied". This is, I think...
by snibgo
2010-04-23T07:36:20-07:00
Forum: Bugs
Topic: Strange behavior in linear_stretch with HDRI (6.6.1-4)
Replies: 21
Views: 39664

Re: Strange behavior in linear_stretch with HDRI (6.6.1-4)

ImageMagick originated in the days when CPUs were measured in MHz not GHz, and memory in MB not GB. Perhaps an option could be added to IM to either: (a) change the number of bins from 1024 to a user-defined number, say 1 million. (b) not to use bins at all, but pixel values. And I do like rnbc's id...
by snibgo
2010-04-23T07:19:15-07:00
Forum: Users
Topic: Problem with convert - tiff to jpg
Replies: 21
Views: 46398

Re: Problem with convert - tiff to jpg

The same command can replace transparency with white (more accurately, it places the image over a white background, so the white shows through fully- or partially-transparent pixels). convert transparent.tif -resize 400x400 -background white -flatten transparent_w.jpg convert alpha2.tif -resize 400x...
by snibgo
2010-04-22T13:27:09-07:00
Forum: Users
Topic: Problem with convert - tiff to jpg
Replies: 21
Views: 46398

Re: Problem with convert - tiff to jpg

No. Downloading and examining with Gimp shows it has a transparent black background. (The background is transparent. Using eyedropper or anti-erase reveals black.)
by snibgo
2010-04-21T18:52:57-07:00
Forum: Users
Topic: Motion detection in AVI surveillance movie?
Replies: 7
Views: 23908

Re: Motion detection in AVI surveillance movie?

Good stuff. When assembling movies, ffmpeg wants frames with consecutive numbers (EDIT: starting from one), so your copy could change to suit.
by snibgo
2010-04-21T13:33:48-07:00
Forum: Developers
Topic: where to download MagickPNG.dll
Replies: 4
Views: 10139

Re: where to download MagickPNG.dll

A search engine turns up: http://www.down-dll.com/index.php?letter=m , and many other sites full of DLL files. Downloading DLLs from random sites might not be a good idea.
by snibgo
2010-04-21T10:57:32-07:00
Forum: Users
Topic: Split images by white space
Replies: 21
Views: 44415

Re: Split images by white space

Sorry, I wouldn't know.
by snibgo
2010-04-21T10:47:35-07:00
Forum: Developers
Topic: where to download MagickPNG.dll
Replies: 4
Views: 10139

Re: where to download MagickPNG.dll

It isn't part of ImageMagick. Nor has Google heard of it. What is it supposed to do?
by snibgo
2010-04-21T10:38:41-07:00
Forum: Users
Topic: Motion detection in AVI surveillance movie?
Replies: 7
Views: 23908

Re: Motion detection in AVI surveillance movie?

That's it, more or less, but I don't know the details. See http://www.imagemagick.org/script/comma ... php#metric for other metrics. It's a clever command: take a photo of the dog, another of the garden, and it will try to find the dog in the garden.
by snibgo
2010-04-21T10:31:03-07:00
Forum: Users
Topic: Split images by white space
Replies: 21
Views: 44415

Re: Split images by white space

I don't know. But your version is six (!) years old. "-quiet" may have been introduced since then, along with other features the script uses.
by snibgo
2010-04-21T10:23:46-07:00
Forum: Users
Topic: Split images by white space
Replies: 21
Views: 44415

Re: Split images by white space

Looking at the script, the complaint about the file arose simply because the convert failed. It failed because it didn't recognise "-quiet". What version IM are you running? I suggest you update it.
by snibgo
2010-04-21T08:39:34-07:00
Forum: Users
Topic: Motion detection in AVI surveillance movie?
Replies: 7
Views: 23908

Re: Motion detection in AVI surveillance movie?

Imagemagic can compare frames, eg:

compare -metric RMSE frame0021.jpg frame0022.jpg null: 2>comp21-22.txt

It generates numbers where larger means more different. I would create a script that did all the comparisons and looked for unusually large numbers.
by snibgo
2010-04-21T08:23:27-07:00
Forum: Developers
Topic: Problem Resizing Animation image
Replies: 1
Views: 4342

Re: Problem Resizing Animation image

If you want the image stretched to 640x680, you need "!".

convert in.png -resize 640x680! out.png

See http://www.imagemagick.org/script/comma ... php#resize
and http://www.imagemagick.org/script/comma ... p#geometry