基于哈日日食的角点检测程序

源代码在线查看: harris2.m

软件大小: 4 K
上传用户: zhiver
关键词: 角点检测 程序
下载地址: 免注册下载 普通下载 VIP

相关代码

				%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
				%  la methode d'Harris à détecter le point d'interet    (2)                   %
				%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
				
				ori_im2=rgb2gray(imread('image29.bmp'));
				% ori_im2=imresize(ori_im2',0.70,'bicubic');
				
				
				% fx = [5 0 -5;8 0 -8;5 0 -5];          % % la gaucienne,ver axe x
				% fx = [-2 -1 0 1 2];
				% fx = [-1 0 1;-2 0 2;-1 0 1];             % le Sobel vers axe x
				fx = [1 0;0 -1];                      % le Roberts vers x
				Ix = filter2(fx,ori_im2);              % la convolution vers axe x
				
				% fy = [5 8 5;0 0 0;-5 -8 -5];          % la gaucienne,ver axe y
				% fy = [-2;-1;0;1;2];
				% fy = [-1 2 1;0 0 0;-1 -2 1];             % le Sobel vers axe y
				fy = [0 1;-1 0];                      % le Roberts vers y
				Iy = filter2(fy,ori_im2);              % la convolution vers axe y
				
				Ix2 = Ix.^2;
				Iy2 = Iy.^2;
				Ixy = Ix.*Iy;
				clear Ix;
				clear Iy;
				
				
				h= fspecial('gaussian',[7 7],2);      % générer une fonction gaussienne,sigma=2
				
				
				Ix2 = filter2(h,Ix2);
				Iy2 = filter2(h,Iy2);
				Ixy = filter2(h,Ixy);
				
				
				height = size(ori_im2,1);
				width = size(ori_im2,2);
				result = zeros(height,width);         % enregistrer la position du coin
				
				
				R = zeros(height,width);
				
				
				K=0.01
				Rmax = 0;                              % chercher la valeur maximale de R
				for i = 1:height
				    for j = 1:width
				        M = [Ix2(i,j) Ixy(i,j);Ixy(i,j) Iy2(i,j)];
				        R(i,j) = det(M)-K*(trace(M))^2;                     % % calcule R
				        if R(i,j) > Rmax
				            Rmax = R(i,j);
				        end;
				    end;
				end;
				
				
				cnt = 0;
				for i = 2:height-1
				    for j = 2:width-1
				        % réduire des valuers minimales ,la taille de fenetre 3*3
				        if R(i,j) > 0.01*Rmax && R(i,j) > R(i-1,j-1) && R(i,j) > R(i-1,j) && R(i,j) > R(i-1,j+1) && R(i,j) > R(i,j-1) && R(i,j) > R(i,j+1) && R(i,j) > R(i+1,j-1) && R(i,j) > R(i+1,j) && R(i,j) > R(i+1,j+1)
				            result(i,j) = 1;
				            cnt = cnt+1;
				        end;
				    end;
				end;
				[posr2,posc2] = find(result == 1);
				% q=size(posr2,1);
				%
				%
				% im_R=rgb2gray(imread('reference.bmp'));
				% im_R=imresize(im_R',0.70,'bicubic');
				%
				% nombre2=0;
				% result=zeros(nombre2,nombre2);
				% for n=1:q
				%     if im_R(posr2(n),posc2(n))==255
				%         result(posr2(n),posc2(n))=255;
				%         nombre2=nombre2+1;
				%     end
				% end
				%
				% [posr2,posc2] = find(result==255);
				% cnt
				% nombre2
				figure(2)
				imshow(ori_im2);
				hold on;
				plot(posc2,posr2,'r+');
							

相关资源