ImageTools
View
display images in a maplet
Calling Sequence
Parameters
Options
Description
Examples
View( row1, row2, ..., opts )
rowi
-
(optional) Image or list(Image); row of images
opts
(optional) equation(s) of the form option = value; specify options for the View command
tempdir = string
Specifies the temporary directory into which images can be written. The default is system specific.
title = string
The title displayed in the Maplet titlebar. The default is Image View.
The View command launches a Maplet dialog that displays rows of images. Each row can contain one or more images.
If the parameter rowi is an image, then that image is displayed in row i.
If the parameter rowi is a list of images, then each of the images is displayed in row i. The first image in the list is displayed on the left.
The first row (row1) is the upper-most.
with⁡ImageTools:
Create two images.
img1≔Create⁡100,200,r,c↦evalf⁡0.5⋅sin⁡r50+0.5⋅sin⁡c30:
img2≔Complement⁡img1:
Display a single image.
View⁡img1
Display two images side by side.
View⁡img1,img2
Display two images above each other.
Display four images in a 2 by 2 grid.
View⁡img1,img2,img2,img1
See Also
ImageTools[Preview]
Download Help Document