【问题标题】:Handwritten character template matching in MatlabMatlab中的手写字符模板匹配
【发布时间】:2013-05-15 20:40:50
【问题描述】:

使用手写数据输入的模板匹配,但由于在 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% 然后我将给出找到它的结果,否则找不到。
这就是我想做的事情。如果有人可以通过编辑或提供建议来帮助处理上述代码,我们将不胜感激。

【问题讨论】:

  • 你应该看看图像配准

标签: matlab image-processing template-matching


【解决方案1】:

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

话虽如此:

在这种特定情况下,找出您的代码为什么不符合您期望的唯一方法是加载它应该匹配但不匹配的输入。然后逐行逐行执行代码,直到看到任何意外行为。


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

【讨论】:

    猜你喜欢
    • 2015-03-15
    • 1970-01-01
    • 2021-08-24
    • 1970-01-01
    • 2015-04-08
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2014-06-18
    相关资源
    最近更新 更多