how to convert a <188x224x6> image to a <1x1> cell
이전 댓글 표시
while taking dual tree complex wavelet transform, i get a 1x1 cell as high freq sub band image. using cell2mat function the size of the high freq sub band image is obtained as 47x56x6 . i increased the size of the image to 188x224x6. now i want to convert this 188x224x6 image to 1x1 cell. please help me in this. tell me the code if possible
댓글 수: 1
Oleg Komarov
2011년 3월 14일
A minor remark: "to convert" is not appropriate terminology in this case.
It's not like you're converting a string '34' to the corresponding 34 double.
You store/enclose your aray in a cell.
답변 (1개)
Laura Proctor
2011년 3월 14일
Simply enclose the resulting image variable in curly braces.
For example:
a = rand(188,224,6);
b = {a};
b results in a 1x1 cell.
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!