필터 지우기
필터 지우기

How to display images from a cell array?

조회 수: 9 (최근 30일)
fiona rozario
fiona rozario 2017년 5월 31일
댓글: Image Analyst 2017년 6월 1일
I have 5 images in a cell array 'imageshares' and I want to display them individually.
figure
image(imageshares{i}));
I used the above code and obviously this didn't work. How do I display the images?
  댓글 수: 4
Matthew Eicholtz
Matthew Eicholtz 2017년 5월 31일
It would be helpful to see more of your code so we can properly diagnose the problem.
fiona rozario
fiona rozario 2017년 6월 1일
f=imread('test2.jpg');
red=f(:,:,1);
green=f(:,:,2);
blue=f(:,:,3);
[r,c,d]=size(f);
shred=zeros(r,c);
shgreen=zeros(r,c);
shblue=zeros(r,c);
image=zeros(r,c);
N = input('Number of pieces to break into ');
rowgroups = diff( round(linspace(0,r,N+1)));
rshares = mat2cell(red, rowgroups, size(red,2));
gshares = mat2cell(green, rowgroups, size(green,2));
bshares = mat2cell(blue, rowgroups, size(blue,2));
imageshares=mat2cell(image, rowgroups, size(image,2));
shredshares = mat2cell(shred, rowgroups, size(shred,2));
shgreenshares = mat2cell(shgreen, rowgroups, size(shgreen,2));
shblueshares = mat2cell(shblue, rowgroups, size(shblue,2));
for i=1:N
imageshares{i}=cat(3,rshares{i},gshares{i},bshares{i});
figure
image(imageshares{i});
end

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

답변 (2개)

Star Strider
Star Strider 2017년 5월 31일
The subscript error is puzzling if ‘i=1:N’. One option is to change the loop counter variable to ‘k’ instead, since a few versions back, ‘i’ could default to the imaginary operator.
The imshow function could be a preferable option (with the index variable change):
figure
imshow(imageshares{k})
This is a guess on my part. If I guessed wrong, I will delete this Answer.
  댓글 수: 1
fiona rozario
fiona rozario 2017년 6월 1일
I tried this but still got the same error.

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


Image Analyst
Image Analyst 2017년 6월 1일
image is a built in function. Thus, this makes no sense:
imageshares=mat2cell(image, rowgroups, size(image,2));
and I don't know what you're doing with all that "shares" stuff. You read in one image, which has 3 color channels, so exactly what 5 images are you expecting to see?
  댓글 수: 2
fiona rozario
fiona rozario 2017년 6월 1일
I entered the value of N as 5, which is the number of parts the matrix needs to be divided into. I need to divide the RGB components into parts or shares and then combine the individual components to form 5 images.
I changed the 'image' variable name and still got the same error.
Image Analyst
Image Analyst 2017년 6월 1일
To split up an image into tiles: see the FAQ

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

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by