Break the image into overlapping image tiles

Discuss digital image processing techniques and algorithms. We encourage its application to ImageMagick but you can discuss any software solutions here.
Post Reply
KinleyChristian
Posts: 1
Joined: 2017-02-19T08:58:51-07:00
Authentication code: 1151

Break the image into overlapping image tiles

Post 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.
snibgo
Posts: 12159
Joined: 2010-01-23T23:01:33-07:00
Authentication code: 1151
Location: England, UK

Re: Break the image into overlapping image tiles

Post 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
snibgo's IM pages: im.snibgo.com
Post Reply