Search found 109 matches

by rnbc
2011-09-18T14:36:19-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Hum... ok, I see. Well, it should be possible, since the structure is basically the same. It might not be easy, given the current ImageMagick architecture (I don't know, quite frankly, just speculating...). For example, given a bunch of images used to form a final image which EXIF do you choose to u...
by rnbc
2011-09-18T10:18:09-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Just tested the package ImageMagick-6.7.2-7-Q16-windows-x64-static and I get the following error: convert.exe: Incompatible type for "FileSource"; tag ignored. `TIFFFetchNormalTag' @ warning/tiff.c/TIFFWarnings/715. convert.exe: incorrect count for field "ImageUniqueID" (34, expe...
by rnbc
2011-09-16T17:47:13-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Ok, thanks :)
by rnbc
2011-09-16T17:02:53-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Thanks! And in Linux? Or will ImageMagick support HDR in windows also? Sometimes I need HDR...

Should I just use the latest TIFF release and recompile in Linux, both the libtiff and ImageMagick?

PS: when I say Linux, I also say Cygwin... posix environments.
by rnbc
2011-09-16T03:25:54-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Ok... this gets weirder and weirder... From wikipedia: The primary libtiff website is considered hijacked. While it now contains a mirror of the real site for current development, the libtiff.org site has not been updated since version 3.6.1. Because of this, much of the information contained therei...
by rnbc
2011-09-16T03:20:33-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

In a Ubuntu 10.04 LTS the system libtiff segfaults when "-define tiff:exif=true" is used...

I can see the system libtiff is libtiff.so.4.3.2 but when I go to http://www.libtiff.org/ I see 3.6.1 listed as the latest version.

What's the recommended libtiff for ImageMagick?
by rnbc
2011-09-16T02:56:31-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

BTW, why isn't there an HDRI-enabled Q16 windows version? Since I need that, I have to compile my own version...
by rnbc
2011-09-15T19:10:15-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

I actually compiled imagemagick under cygwin, so this is perhaps not your fault...

I'll try to install a newer version of libtiff... or just use imagemagick under Linux, which is how it should be used anyway ;)
by rnbc
2011-09-15T18:52:32-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

huh... over here:

Code: Select all

/usr/local/apps/ImageMagick/installed/bin/identify.exe -define tiff:exif=true -verbose small-landscape.tif
Produces no results at all... weird. Without the define it produces the results I wrote before.

ImageMagick-6.7.2-6 used here...

Seems like libtiff is broken :P
by rnbc
2011-09-15T16:48:29-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Perhaps you could make it a ./configure script option, when compiling ImageMagick?
by rnbc
2011-09-15T16:07:38-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Also, running identify outputs no EXIF, although the information is there, at least for Windows (File->Properties) and PhotoShop... identify -verbose small-landscape.tif Output: Image: small-landscape.tif Format: TIFF (Tagged Image File Format) Class: DirectClass Geometry: 300x200+0+0 Resolution: 30...
by rnbc
2011-09-15T16:02:55-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Re: Exif bug when reading TIFFs?

Not doing any processing results in two frames, both without exif. Try yourself:

Code: Select all

convert small-landscape.tif jpg:small-landscape2.jpg
by rnbc
2011-09-15T15:44:12-07:00
Forum: Users
Topic: Exif bug when reading TIFFs?
Replies: 21
Views: 43291

Exif bug when reading TIFFs?

Hi! While doing my "isolated pixel cleaning" (a solved problem now, many thanks!) I noticed that the EXIF information contained in the TIFF was lost in transit... So that you can easily check out what seems like a bug I generated a small version of the TIFF using the same program (SilkyPix...
by rnbc
2011-09-15T15:19:41-07:00
Forum: Users
Topic: Finding isolated pixels.
Replies: 14
Views: 27341

Re: Finding isolated pixels.

I found this worked great:

Code: Select all

convert Lenna-128-isolated.tif \( +clone -morphology HMT Peaks:1.5 \) +swap -compose subtract -composite Lenna-128-subtract.tif
by rnbc
2011-09-15T06:21:10-07:00
Forum: Users
Topic: Finding isolated pixels.
Replies: 14
Views: 27341

Re: Finding isolated pixels.

Anthony, the Morphology method seems to work rather well, thanks! I'll test it on some real images with real hot pixels and report the results. The problem is that hot pixels are not as "hot" as in my example images, and the "fx" method seems more sensitive. Then again, only prac...