Cell array to image
古いコメントを表示
i have a data which is cell array
x_error=41 X 41 Cell
i want to create an image by using this cell array value is this possible
4 件のコメント
rifat
2014 年 5 月 27 日
can you provide a little more information about this cell array? What kind of data does each cell contain?
sazzad hossen
2014 年 5 月 27 日
Jos (10584)
2014 年 5 月 27 日
What does the contents of each cell look like? And what does it represent?
sazzad hossen
2014 年 5 月 27 日
回答 (1 件)
Image Analyst
2014 年 5 月 27 日
To stitch together two images, each of which is inside a cell, do this:
wideImage = [ca{1}, ca{2}]; % Stitch together horizontally.
tallImage = [ca{1}; ca{2}]; % Stitch together vertically.
See the FAQ: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F for a good discussion of cell arrays.
1 件のコメント
sazzad hossen
2014 年 5 月 27 日
編集済み: sazzad hossen
2014 年 5 月 27 日
カテゴリ
ヘルプ センター および File Exchange で Convert Image Type についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!