美文网首页matlab学习
matlab 角点检测

matlab 角点检测

作者: Kerwin_H | 来源:发表于2019-06-21 09:48 被阅读0次

%角点检测

ori_im2=rgb2gray(imread('1_1.bmp'));   

%ori_im2=imresize(ori_im2',0.50,'bicubic');  %加上这句图就变成竖着的了 

fx = [5 0 -5;8 0 -8;5 0 -5];          % % la gaucienne,ver axe 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

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',[36 36],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.04;

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);

cnt;                                      % compter des coins

figure

imshow(ori_im2);

hold on;

plot(posc2,posr2,'b*');

相关文章

  • matlab 角点检测

    %角点检测 ori_im2=rgb2gray(imread('1_1.bmp')); %ori_im2=imre...

  • matlab 角点检测2

    %%%Prewitt Operator Corner Detection.m %%%时间优化--相邻像素用取差的方...

  • matlab C++混合编程——opencv

    Canny边缘检测 C++代码 matlab测试代码 Sobel边缘检测 C++代码 matlab测试代码

  • Haars角点检测

    Hessian焦点检测 基本概念 角点检测是检测边缘上的角点。 角点是曲率变大的点,由高斯曲率来描述 高斯曲率公式...

  • matlab unwrap函数的java实现

    matlab unwrap文档 平移相位角 - MATLAB unwrap - MathWorks 中国[http...

  • python 3+opencv 3.4(五)--图像特征提取

    应用:图像拼接、图像匹配 特征检测和提取算法:Harris(检测角点)SIFT(检测斑点blob)SURF(检测斑...

  • 计算机视觉 OpenCV Android | 特征检测与匹配之角

    本文要点总结(俩算法的联系与区别) Harris角点检测与Shi-Tomasi角点检测都是经典的角点特征提取算法,...

  • 第 8 章 检测兴趣点

    本章包括以下内容: 检测图像中的角点; 快速检测特征; 尺度不变特征的检测; 多尺度FAST 特征的检测。 8.2...

  • 椭圆检测

    Hough变换检测椭圆 附带matlab与opencv代码 QT+opencv学习笔记(5)——霍夫直线检测、圆检...

  • 核酸的琐事

    我们小区门外有两个核酸检测点,一个在东南角,一个在小区正东方向。 我偏爱东南角那个检测点,此处紧贴 13 号线地铁...

网友评论

    本文标题:matlab 角点检测

    本文链接:https://www.haomeiwen.com/subject/qqveqctx.html