how display a array of image using a for loop

3 次查看(过去 30 天)
i have stored 10 images in a array im=[im1,im2......],bt when i try to display it, it is not getting displaying i.e for i=1:10 figure, imshow(im(i)) plz can anyone help in figure out this problem

回答(1 个)

Image Analyst
Image Analyst 2012-4-14
You're using linear indexing, which in effect only shows the first pixel of each image plane. If your images are grayscale images in a 3D array, you can do this:
for slice = 1 : size(im, 3)
imshow(im(:,:,slice), []);
drawnow;
pause(0.5); % Wait 1/2 second to show each one.
end
The colon means " all rows" or " all columns" so I'm taking all rows and all columns of each slice and displaying that entire slice.
  2 个评论
mahendra kumar
mahendra kumar 2012-4-14
sir actually what i m trying to do is, i hav stored 3 images in a folder i.e an eye opened,eye closed and eye half opened image. so now i want to compare a sequence of 5 eye closed image with with my image comparing code to show no eye moment detected and in the 6th comparison i like to introduce a eye opened image and display that the eye moment has been detected. so i need to put 5 eye closed and 1 eye opened image in an array and sequentially retrieve it and do the comparison and display the result... so can i do this with the for loop or do i need anything eles
Image Analyst
Image Analyst 2012-4-14
编辑:Walter Roberson 2012-8-10
Since eyes will be so different from one person the the next, I think it would be hard to compare images directly, for example through subtraction. I think you'd be better off analyzing each image and getting a feature vector of things, like "pupil present", "skin area fraction", "iris detected", etc. You should study up here to get some idea of how people do eye detection/tracking: http://iris.usc.edu/Vision-Notes/bibliography/contentspeople.html#Face%20Recognition,%20Detection,%20Tracking,%20Gesture%20Recognition,%20Fingerprints,%20Biometrics

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Loops and Conditional Statements 的更多信息

标签

Community Treasure Hunt

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

Start Hunting!

Translated by