how to make montage read one image at a time from a cell array of unit8 images and assemble them into a single image?
1 次查看(过去 30 天)
显示 更早的评论
Hi everyone ! i've a cell array which contains the images I've created previously
a =
1×14 cell array
{246×272×3 uint8} {246×272×3 uint8} {246×272×3 uint8} {246×272×3 uint8} {246×272×3 uint8}
and i want put all the images of my array a all together in one figure with montage i've tried to do
montage(a)
but i've this error : The specified filename is not a string.
so i've do this :
for i = 1 : numberofImages
montage(a{i},'Size',[1 numberofImages]
end
so in this way montage read my a{i} image but overtime it opens a new figure and don't want this hope you can help me thanks
0 个评论
回答(0 个)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!