4

使用手写数据输入的模板匹配,但由于在 Matlab 中非常新而面临一些问题。我想把这个模板
在此处输入图像描述
和这个..
在此处输入图像描述

到目前为止我所做的是:

function result=test(image1,image2)
%*********************************************************

    image1=rgb2gray(image1);
    image2=rgb2gray(image2);

% check which one is target and which one is template using their size

if size(image1)>size(image2)
    Target=image1;
    Template=image2;
else
    Target=image2;
    Template=image1;
end

% find both images sizes
[r1,c1]=size(Target);
[r2,c2]=size(Template);
% mean of the template
image22=Template-mean(mean(Template));

%corrolate both images
M=[];
for i=1:(r1-r2+1)
    for j=1:(c1-c2+1)
        Nimage=Target(i:i+r2-1,j:j+c2-1);
        Nimage=Nimage-mean(mean(Nimage));  % mean of image part under mask
        corr=sum(sum(Nimage.*image22));
        %warning off
        M(i,j)=corr/sqrt(sum(sum(Nimage.^2)));
    end 
end
% plot box on the target image
result=plotbox(Target,Template,M);

对于情节箱..

function result=plotbox(Target,Template,M)

%*********************************************************
[r1,c1]=size(Target);
[r2,c2]=size(Template);

[r,c]=max(M);
[r3,c3]=max(max(M));

i=c(c3);
j=c3;
result=Target;
for x=i:i+r2-1
   for y=j
       result(x,y)=255;
   end
end
for x=i:i+r2-1
   for y=j+c2-1
       result(x,y)=255;
   end
end
for x=i
   for y=j:j+c2-1
       result(x,y)=255;
   end
end
for x=i+r2-1
   for y=j:j+c2-1
       result(x,y)=255;
   end
end

为了测试我使用..

% read Template image
im1=imread('C:\Users\Shuvro\Desktop\New folder\1.jpg');
% read Traget Image
im2=imread('C:\Users\Shuvro\Desktop\New folder\2.jpg');
% apply templete matching using power of the image
result1=test(im1,im2);
figure,
subplot(2,2,1),imshow(im1);title('Template');
subplot(2,2,2),imshow(im2);title('Target');
subplot(2,2,3),imshow(result1);title('Matching Result using tmp');

但是这段代码通常无法识别源图像中的那个模板,不明白那里出了什么问题。有人可以帮忙吗?
基本上,当我向系统输入 2 个图像时,我想让它们的高度相似。然后我想测量模板图像的宽度,然后我想根据该宽度扫描源图像并检查像素值。当模板的那些像素值将与源图像匹配超过 70% 然后我将给出找到它的结果,否则找不到。
这就是我想做的事情。如果有人可以通过编辑或提供建议来帮助处理上述代码,我们将不胜感激。

4

1 回答 1

0

首先我想警告你这size(image1)>size(image2)是一个向量比较,通常你不会想要那样做。(也许用allany)。

话虽如此:

在这种特定情况下,弄清楚为什么您的代码没有按照您的预期执行的唯一方法是加载它应该匹配但不匹配的输入。然后逐行遍历代码,直到您看到任何意外行为。


当然你也可以尝试搜索 matlab 的模式匹配函数,应该有一些你可以在 google 上找到,甚至在 stackoverflow 上也可以找到。

于 2014-05-08T12:56:59.903 回答