Search found 8 matches

by jonrescca
2012-04-06T02:54:36-07:00
Forum: Users
Topic: [solved] ppi conversion not working for me
Replies: 1
Views: 3669

Re: ppi conversion not working for me

Stupid me, I shoot in the original exif data somewhere further down this script, and that replaces the 400ppi setting I wanted...
by jonrescca
2012-04-06T00:18:38-07:00
Forum: Users
Topic: [solved] ppi conversion not working for me
Replies: 1
Views: 3669

[solved] ppi conversion not working for me

Hi All, I'm about to run a batch on converting 300ppi tiff files to a bunch of jpg's at 400ppi, but somehow that doesn't work for the following command: convert -units PixelsPerInch input.tif -quiet -gravity West -crop 51.0000x100%+0+0 -quality 95 -unsharp 0.8x1.1+0.8+0 +profile 8bim -density 400 ...
by jonrescca
2011-12-13T01:23:16-07:00
Forum: Users
Topic: Detecting cropping errors
Replies: 1
Views: 3655

Detecting cropping errors

Hi all, I think it should be possible to use image ImageMagick to detect cropping errors, by finding image edges that are nog continuous. We record our images on a black background, and when an cropping error occurs (Photoshop crop and straighten), some piece of the recorded element breaks the ...
by jonrescca
2011-11-28T05:30:12-07:00
Forum: Users
Topic: Detecting color moire in document scans
Replies: 2
Views: 5513

Re: Detecting color moire in document scans

Does Anyone know a trick to detect color moire blobs in images like the attachment above?

Best,
Jon
by jonrescca
2011-11-17T06:51:16-07:00
Forum: Users
Topic: resolution problem
Replies: 10
Views: 15238

Re: resolution problem

For photoshop to respect the density set by imagemagick, we use the
+profile "8bim"
option

Code: Select all

convert -units PixelsPerInch input.tif +profile "8bim" -density 150 output.jpg
by jonrescca
2011-11-15T08:53:25-07:00
Forum: Users
Topic: Detecting color moire in document scans
Replies: 2
Views: 5513

Detecting color moire in document scans

Hi all, I would like to know a trick to detect color moiré in scanned documents of newspapers and alike. I've attached two cropped examples (tif) with one slide with small dots in green and purple, and the other slide with bigger dots. I'd like to only detect images with colordots above a certain ...
by jonrescca
2011-11-14T00:30:12-07:00
Forum: Users
Topic: Finding clipped (over exposed) images
Replies: 4
Views: 9541

Re: Finding clipped (over exposed) images [Solved]

The hint by Anthony gave me excellent results, after little tweaking of the treshold, I could even pick out the images with just some clipped pixels. The basic script I wrote around this is the following: #!/bin/sh # usage: find . -type f -name "*.tif" -a ! -name ".*" | while read i ; do clipping ...
by jonrescca
2011-11-10T08:36:14-07:00
Forum: Users
Topic: Finding clipped (over exposed) images
Replies: 4
Views: 9541

Finding clipped (over exposed) images

Hi list members, This is my first question on the forum, so spare me ;-) I want to write an bash script, that uses imagemagick to find overexposed images in a pile of about 10.000. Can anyone point me in the right direction? I understand that we have luminosity and RGB histograms, what would be best ...