我正在尝试实现二维相关算法来检测图像中对象的位置,我不想使用任何内置函数估计二维相关。
这是我的代码:
I=imread('image.tif'); % image is a black image contains white letters.
h=imread('template.tif'); %template is a small image taken from the original image, it contains one white letter.
I=double(I);
h=double(h);
[nrows ncolumns]=size(I);
[nrows2 ncolumns2]=size(h);
C=zeros(nrows,ncolumns);
for u=1:(nrows-nrows2+1)
for v=1:(ncolumns-ncolumns2+1)
for x=1:nrows2
for y=1:ncolumns2
C(u,v)=C(u,v)+(h(x,y)*I(u+x-1,v+y-1));
end
end
end
end
[maxC,ind] = max(C(:));
[m,n] = ind2sub(size(C),ind) % the index represents the position of the letter.
output_image=(3.55/4).*C./100000;
imshow(uint8(output_image));
我认为它正在工作!但它很慢。
如何用更好的代码替换以下代码以加快算法速度?
for x=1:nrows2
for y=1:ncolumns2
C(u,v)=C(u,v)+(h(x,y)*I(u+x-1,v+y-1));
end
end
我在想,每次我都有以下两个矩阵
h(1:nrows2,1:ncolumns2)
和I(u:u+nrows2-1,v:v+ncolumns2-1)
另一个问题,有什么改进吗?
谢谢。