aboutsummaryrefslogtreecommitdiff
path: root/docs/plot/greyscale.sh
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2016-09-08 17:13:39 -0500
committerHoward Butler <howard@hobu.co>2016-09-08 17:13:39 -0500
commit266392e36cb027b00523407f537e3fdf38f021b5 (patch)
treec0c26c4c017542c3366a1b5bed61ac6f0f802862 /docs/plot/greyscale.sh
parent94142b9061fd1a6ca64e0e7401f2f7d34d1f261e (diff)
parentd93cc0ca2bdfc89e2727e59428994def1bf516c6 (diff)
downloadPROJ-266392e36cb027b00523407f537e3fdf38f021b5.tar.gz
PROJ-266392e36cb027b00523407f537e3fdf38f021b5.zip
Merge branch 'master' of github.com:OSGeo/proj.4
Diffstat (limited to 'docs/plot/greyscale.sh')
-rwxr-xr-xdocs/plot/greyscale.sh7
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;