0
如何將圖像從索引轉換爲RGB顏色usinh matlab?我以前已將其轉換爲rgb索引,但是當我使用ind2rgb()
將其轉換回rgb時,圖像中沒有任何更改。如何將圖像從索引轉換爲RGB顏色usinh matlab?
如何將圖像從索引轉換爲RGB顏色usinh matlab?我以前已將其轉換爲rgb索引,但是當我使用ind2rgb()
將其轉換回rgb時,圖像中沒有任何更改。如何將圖像從索引轉換爲RGB顏色usinh matlab?
%matmap2rgb
%converts a MxN matrix, and a Lx3 matrix to MxNx3 matrix
%syntax: matmap2rgb(mat, map);
function outrgbmat=matmap2rgb(mat, map)
rowVect=map(mat+1,:);
outrgbmat(:,:,1)=reshape(rowVect(:,1),size(mat,1),size(mat,2));
outrgbmat(:,:,2)=reshape(rowVect(:,2),size(mat,1),size(mat,2));
outrgbmat(:,:,3)=reshape(rowVect(:,3),size(mat,1),size(mat,2));
end