subimage

此函式的功能是在一個圖形上顯示多個圖像。

函式簡介,程式實例:,

函式簡介

函式功能:使多個圖像同時顯示在一個界面上。
在matlab命令視窗中輸入: doc subimage或者help subimage即可獲得該函式的幫助信息, 鍵入type subimage可以查看函式的實現代碼。
隨用方式:
subimage(X, map)
顯示索引圖像X,以及map
subimage(I)
在當前的坐標軸顯示強度圖像I。
subimage(BW)
在當前的坐標軸顯示二值圖像BW。
subimage(RGB)
在當前的坐標軸顯示真彩色圖像RGB
subimage(x, y...)
h = subimage(...)

程式實例:

load trees
[X2,map2] = imread('forest.tif');
subplot(1,2,1), subimage(X,map)
subplot(1,2,2), subimage(X2,map2)

相關詞條

熱門詞條

聯絡我們