#!/bin/sh
if [ $# -eq 1 ]; then
    OPTS="+A0.1 +AM2 +R2 +J0"
    povray $OPTS +W1024 +H768 +Olores $1
    povray $OPTS +W1740 +H1305 +Ohires $1
fi
convert -blur 1,.5 hires.png hires-blur.png
python ~/topgmraw.py hires-blur.png hires.pgm
/usr/src/dcraw-7.94/dcraw -4 -c hires.pgm | pnmdepth 255 > hires.ppm

