What I’m after is a Julia equivalent to Matlab’s “subplots”, that allows images to be displayed in arbitrary grids. I can “stitch” two images of the same size with
[img1 img2]
as the last line of an IJulia cell. But this shows the two images as one single, larger image, which is not what I want. I’m looking for something like
plot(img1, img2, layout=(1,2))
in which the sizes of the two images are irrelevant. The best I can find so far is
plot(plot(img1,seriestype=:image),plot(img2,seriestype=:image))
but this resizes the images so that they’re displayed with the same size. Again, that’s not quite what I want.
What’s my best option here?
Thanks,
Alasdair