aboutsummaryrefslogtreecommitdiff
path: root/docs/plot/greyscale.sh
diff options
context:
space:
mode:
authorHoward Butler <howard@hobu.co>2016-09-08 14:09:29 -0500
committerHoward Butler <howard@hobu.co>2016-09-08 14:09:29 -0500
commit145c09d3e1b45ca95ff716ac49b84c13dc9ae58a (patch)
treec217125e44726566f5ed8ff45095d60e3b030a1e /docs/plot/greyscale.sh
parent3880c10dab0ec61d5826309edd87a249a689cd82 (diff)
downloadPROJ-145c09d3e1b45ca95ff716ac49b84c13dc9ae58a.tar.gz
PROJ-145c09d3e1b45ca95ff716ac49b84c13dc9ae58a.zip
add Kristian's image plotting to doc tree
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;