使用MATLAB在图像上绘制矩形框

时间:2016-05-26 06:32:24

标签: matlab image-processing video-processing parking

在这里,我开发了一些用于在图像上绘制框的代码,但我得到了  在不同的图像上的框。所有方框都应该是相同的图像。  请帮帮我。

output image 1

output image 2

video = VideoReader('parking video1.mp4');
I = read(video,1);
J = read(video,200);
a=104; b=73;
c=104; d=515;
count=0;count1=0;count2=0;
total=10;

for i=1:5

im1=imcrop(I,[a,b,283, 448]);

im3=imcrop(J, [a,b,283, 448]); 

Background1 =abs(im1 - im3);

grayImage1 = rgb2gray(Background1);
% Convert to gray level

 thresholdLevel1 = graythresh(grayImage1);
    % Get threshold.

binaryImage1 = im2bw( grayImage1, thresholdLevel1);
   % Do the binarization


binaryImage1 = bwareaopen(binaryImage1,1000);



ak=bwarea(binaryImage1);


figure, imshow(J);
hold on;  

   if ak>0


     rectangle('Position',[a,b,283, 448],'Edgecolor', 'r');
   else

     rectangle('Position',[a,b,283, 448],'Edgecolor', 'g');


   end
a=a+280;  
end

1 个答案:

答案 0 :(得分:1)

每次运行代码时都会打开一个新窗口。您应该在显示之前指定要使用的图形窗口。

所以不要这样:

figure, imshow(J);

这样做:

figure(1), imshow(J);

每次都应该在同一个图窗口(图号1)中显示图像。