Crop centered window to given size
using Augmentor
using ImageShow, ImageCore
img_in = testpattern(RGB, ratio=0.5)
img_out = augment(img_in, CropSize(70, 70)) # crop out a square window
mosaicview(img_in, img_out; nrow=1, npad=10)
RCropSize
is a random version that randomly choose a crop center -- not necessarily the center
of the input image.
augment(img_in, CropSize(70, 70))
This notebook was generated using Literate.jl.