I've been using blockproc
for processing images blockwise. Unfortunately, blockproc
is part of the Image Processing Toolbox, which I don't have on my personal computer.
Is there a combination of functions in base Matlab that can substitute for blockproc
?
My initial guess was to use im2col
to transform each block into columns, and then arrayfun
to process each column. Then I realized that im2col
is also a part of the Image Processing Toolbox, so that doesn't solve my problem.