ImageTools
GetSubImage
extract a subimage from an image
Calling Sequence
Parameters
Options
Description
Examples
GetSubImage( img, row, col, ht, wd, opts )
img
-
Image
row
integer; initial row of the subimage
col
integer; initial column of the subimage
ht
posint; height of the subimage
wd
posint; width of the subimage
opts
(optional) equation(s) of the form option = value; specify options for the GetSubImage command
output = Image
Specifies a data structure into which the output is written. This can be used to avoid allocating memory. The size, number of layers, and order must match that of the subimage. The default is NULL.
reindex = truefalse
If true, the indices of the returned image are reindexed so that they start at 1. If false, the row and column indices start at row and col, respectively. The default is false.
The GetSubImage command returns a subimage of a given image.
The img parameter is the image.
The row and col parameters specify the coordinates of the upper left pixel of the desired subimage of img.
The ht and wd parameters specify the height and width of the subimage.
with⁡ImageTools:
img≔Create⁡500,500,r,c↦r1000+c1000:
imgs≔GetSubImage⁡img,100,100,200,200:
Embed⁡img,imgs
See Also
ImageTools[GetLayer]
ImageTools[SetSubImage]
ImageTools[View]
Download Help Document