Cell array to image
조회 수: 3 (최근 30일)
이전 댓글 표시
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
답변 (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.
참고 항목
카테고리
Help Center 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!