Cell array to image

조회 수: 3 (최근 30일)
sazzad hossen
sazzad hossen 2014년 5월 27일
댓글: sazzad hossen 2014년 5월 27일
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
Jos (10584)
Jos (10584) 2014년 5월 27일
What does the contents of each cell look like? And what does it represent?
sazzad hossen
sazzad hossen 2014년 5월 27일
Daer Mr. Jos,
i attached my data file below could you please tell me how can i get an image or graph ( separate or a combined )

댓글을 달려면 로그인하십시오.

답변 (1개)

Image Analyst
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
sazzad hossen 2014년 5월 27일
편집: sazzad hossen 2014년 5월 27일
Dear Image Analyst,
Hope you are fine. Previously you helped me a lot, hope this time you also give me a good solution, as you give always.
my data file is attached here. how can i get e image or graph from this value. using combined or separately graph or image

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by