Page 1 of 1

Break the image into overlapping image tiles

Posted: 2017-02-22T07:58:37-07:00
by KinleyChristian
I have requirement to split up an image into overlapping image tiles in R.

With some efforts I found few reference material but all of these are implemented in MATLAB (using some inbuilt functionality/methods). The problem is I want to implement this in R and not sure about which package, method to use.

Some clarification regarding which package/method to use would be greatly appreciated.

Re: Break the image into overlapping image tiles

Posted: 2017-02-22T09:34:36-07:00
by snibgo
I know nothing about R.

With IM at the command line, the task is simple, eg:

Code: Select all

convert in.png -crop 2x2@+10+10 out_%02d.png