mirror of
git://projects.qi-hardware.com/antorcha.git
synced 2024-11-01 17:19:44 +02:00
11 lines
260 B
Bash
Executable File
11 lines
260 B
Bash
Executable File
#!/bin/sh
|
|
./alg "$@" >_out
|
|
gnuplot -persist <<EOF
|
|
set style data lines
|
|
plot "_out" using 1 title "input", \
|
|
"_out" using 2 title "denoise", \
|
|
"_out" using 3 title "common", \
|
|
"_out" using 4 title "diff", \
|
|
"_out" using (50*\$5-200) lt 7 title "up"
|
|
EOF
|