diff options
| author | Howard Butler <howard@hobu.co> | 2016-09-08 17:13:39 -0500 |
|---|---|---|
| committer | Howard Butler <howard@hobu.co> | 2016-09-08 17:13:39 -0500 |
| commit | 266392e36cb027b00523407f537e3fdf38f021b5 (patch) | |
| tree | c0c26c4c017542c3366a1b5bed61ac6f0f802862 /docs/plot/greyscale.sh | |
| parent | 94142b9061fd1a6ca64e0e7401f2f7d34d1f261e (diff) | |
| parent | d93cc0ca2bdfc89e2727e59428994def1bf516c6 (diff) | |
| download | PROJ-266392e36cb027b00523407f537e3fdf38f021b5.tar.gz PROJ-266392e36cb027b00523407f537e3fdf38f021b5.zip | |
Merge branch 'master' of github.com:OSGeo/proj.4
Diffstat (limited to 'docs/plot/greyscale.sh')
| -rwxr-xr-x | docs/plot/greyscale.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/docs/plot/greyscale.sh b/docs/plot/greyscale.sh new file mode 100755 index 00000000..7a6e9b38 --- /dev/null +++ b/docs/plot/greyscale.sh @@ -0,0 +1,7 @@ + + +for f in $(ls *.png) +do + + convert $f -fx '(r+g+b)/3' -colorspace Gray $f +done; |
