Sophie

Sophie

distrib > Mandriva > 2009.1 > x86_64 > by-pkgid > bbb305e6fb2f4e8ebc72959c802137bf > files > 10

dcraw-8.93-1mdv2009.1.src.rpm

#!/bin/sh

# Rough equivalents to XV's Sharpen algorithm

cat > sharpen50.pgm << xx
P2 3 3 18
8 8 8 8 26 8 8 8 8
xx
cat > sharpen66.pgm << xx
P2 3 3 18
7 7 7 7 34 7 7 7 7
xx
cat > sharpen75.pgm << xx
P2 3 3 6
2 2 2 2 14 2 2 2 2
xx
cat > sharpen90.pgm << xx
P2 3 3 2
0 0 0 0 10 0 0 0 0
xx

for x in `ls *.crw | cut -d. -f1`
do
  dcraw -f -c $x.crw | pnmconvol sharpen66.pgm \
	| cjpeg -quality 90 > $x.jpeg
  touch -r $x.crw $x.jpeg
done