blob: 3e19194328c3d6c8d6a722d9ce4b3353590874f4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
#!/bin/sh
INFILE=$1
grep "predict_refine/det_shift" $INFILE > plotme.dat
gnuplot -persist << EOF
set xlabel "x shift / mm"
set ylabel "y shift / mm"
plot "plotme.dat" using 4:7
replot 0 lw 2 lc 0
EOF
|