ViewVC Help
View File | Revision Log | Show Annotations | Download File | Root Listing
root/radiance/ray/src/px/pgblur.csh
Revision: 1.1
Committed: Thu Jan 29 22:19:13 2004 UTC (20 years, 3 months ago) by greg
Content type: application/x-csh
Branch: MAIN
CVS Tags: rad3R7P2, rad3R7P1, rad3R6, rad3R6P1, rad3R8, rad3R9
Log Message:
Added pgblur to compute large Gaussian blurs

File Contents

# Content
1 #!/bin/csh -f
2 # RCSid $Id$
3 #
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 echo Usage: "$0 -r radius input.pic"
29 exit 1