diff --git a/cut_counters.sh b/cut_counters.sh index d417829..95f2f3e 100755 --- a/cut_counters.sh +++ b/cut_counters.sh @@ -8,3 +8,9 @@ height=`identify -ping -format '%h' $1` no_v_slices=$2 no_h_slices=$3 file_prefix=$4 + +vert_size=`echo "$height/($no_h_slices+1)" | bc -l` +hort_size=`echo "$width/($no_v_slices+1)" | bc -l` + +echo $vert_size +echo $hort_size \ No newline at end of file