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.
Break the image into overlapping image tiles
-
- Posts: 1
- Joined: 2017-02-19T08:58:51-07:00
- Authentication code: 1151
-
- Posts: 12159
- Joined: 2010-01-23T23:01:33-07:00
- Authentication code: 1151
- Location: England, UK
Re: Break the image into overlapping image tiles
I know nothing about R.
With IM at the command line, the task is simple, eg:
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