如何在循环中使用子图,imshow或图形来显示所有图像?

时间:2017-04-15 10:01:53

标签: matlab matlab-figure figure subplot imshow

基本上,我想循环所有视频帧,从背景图像中减去每一帧,并使用子图或图显示结果,即减去我

while hasFrame(vidObj)
    frame = readFrame(vidObj);

    subtractedImg=imabsdiff(frame,backgroundImg);
    figure(i); imshow(subtractedImg);
    % subplot(5,5,i),imshow(subtractedImg); 
    %uncommenting above line does not work, subplot not shown
    if(i < 20)
    i= i+1;
    end

end %end while

subplot(1,2,1),imshow(subtractedImg),title('last one');

这里的问题我在这里使用的子图,在这个循环中没有显示输出。只显示一个带有标题&#34;最后一个&#34;。

的图形
.container {
display: inline-block;
cursor: pointer;
}

.container:hover {
color: #fff!important;
background: #FF0000;
}

.bar1, .bar2, .bar3 {
width: 35px;
height: 5px;
background-color: #000;
margin: 6px 0;
transition: 0.4s;
}

/* Rotate first bar */
.change .bar1 {
transform: rotate(-45deg) translate(-9px, 6px);
}

/* Fade out the second bar */
.change .bar2 {
opacity: 0;
}

/* Rotate last bar */
.change .bar3 {
transform: rotate(45deg) translate(-8px, -8px);
}

如何使用子图显示每个图像?例如,使用5x5子图,如果我想显示25个减影图像,为什么子图(5,5,i),imshow(减去Img); 不起作用?

2 个答案:

答案 0 :(得分:0)

这应该为每个帧创建一个数字和一个新的子图:

<a-sphere position="1 1 0" color="#ef2d5e">
    <a-animation attribute="rotation" to="0 360 0" dur="10000" easing="linear" repeat="indefinite">
    </a-animation>
</a-sphere>

答案 1 :(得分:0)

这里要做的第一件事是删除循环内figure的调用。在循环之前只需调用一个数字即可。您可以在每次迭代时使用clf来清除当前数字的内容。

然后,您可能希望在绘图命令之后添加drawnow命令以在每次迭代时刷新图形。

最后,您可能(或不想)添加pause以等待帧之间的用户输入。请注意,如果您使用pause,则不需要drawnow