KANGARECOGNIZER 2019-03-15 ========================== Tiling the original image into a number of smaller overlapping tiles to analyse fileName=$home/allegrobotics.com/gallery/20190118_180011.jpg for x in `seq 0 200 4031`; do for y in `seq 0 200 2267`; do echo x is $x y is $y printf -v x0 "%04d" $x printf -v y0 "%04d" $y echo convert -crop 400x400+$x+$y $fileName $y0.$x0.jpg convert -crop 400x400+$x+$y $fileName $y0.$x0.jpg done done