ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/pgblur.csh
Revision: 1.2
Committed: Mon Nov 10 19:08:19 2008 UTC (15 years, 5 months ago) by greg
Content type: application/x-csh
Branch: MAIN
CVS Tags: rad5R2, rad4R2P2, rad5R0, rad5R1, rad4R2, rad4R1, rad4R0, rad4R2P1, rad5R3
Changes since 1.1: +2 -2 lines
Log Message:
Changed ".pic" extension to ".hdr" throughout

File Contents

# User Rev Content
1 greg 1.1 #!/bin/csh -f
2 greg 1.2 # RCSid $Id: pgblur.csh,v 1.1 2004/01/29 22:19:13 greg Exp $
3 greg 1.1 #
4     # Apply Gaussian blur without resizing image
5     # More efficient than straight pfilt for large blurs
6     #
7     if ( $#argv != 3 ) then
8     goto userr
9     endif
10     if ( "$1" != "-r" ) then
11     goto userr
12     endif
13     if ( "$2" !~ [1-9]* ) then
14     goto userr
15     endif
16     set rad = $2
17     set inp = "$3"
18     set reduc = `ev "floor($rad/1.8)"`
19     if ( $reduc <= 1 ) then
20     exec pfilt -1 -r $rad $inp:q
21     endif
22     set filt = `ev "$rad/$reduc"`
23     set pr=`getinfo -d < $inp:q | sed 's/^-Y \([1-9][0-9]*\) +X \([1-9][0-9]*\)$/\2 \1/'`
24     pfilt -1 -x /$reduc -y /$reduc $inp:q \
25     | pfilt -1 -r $filt -x $pr[1] -y $pr[2]
26     exit 0
27     userr:
28 greg 1.2 echo Usage: "$0 -r radius input.hdr"
29 greg 1.1 exit 1