To chop images, you should be able to use Images.jl.
using Images
using TestImages
img = testimage("mandrill")
w, h = size(img)
ims = [@view img[iw:iw + 100, ih:ih + 100]
for iw in 1:100:w - 100,
ih in 1:100:h - 100]
for (i, im) in enumerate(ims)
save("/tmp/im-$(lpad(i, 3, "0")).png", im)
end