Can I show 3-4 outputs(graphical output, Same images) in different windows using matlab.some thing like the following fig.
for more clarification- example-
for i=1:10
vid = videoinput('winvideo', 2);
set(vid,'FramesPerTrigger',2);
start(vid);
imageData=getdata(vid,1);
I=rgb2gray(imageData);
figure,imshow(I);
end
In this case 10 frames will be shown in 10 different figure. Which I do not want to do. I want to show all the frames in same window, even if the frame changes every time.
I am not talking about figure or subfigure. And the output can be changed every time in the same window.
Regards,