如何将harris角点算法算法提取出来的角点一一对应起来

harris算法检测角点的matlab实现及算法缺点
用&Harris&算法进行检测,有三点不足:(1&)该算法不具有尺度不变性;(2&)该算法提取的角点是像素级的;(3&)该算法检测时间不是很令人满意。
Harris子函数:
function [posc, posr] =
jiaodian(ori_im)
% 函数的输入参数:ori_im,即需要进行角点提取的图像
% 输出参数:[posc,posr]分别为角点的横纵坐标
% ori_im =
imread('G:\data\radar-data\matlab\picture\beaver.png');
% ori_im = rgb2gray(ori_im);
% fx = [5 0 -5;8 0 -8;5 0 -5]; &
高斯函数一阶微分,x方向(用于改进的Harris角点提取算法)&
fx = [-2 -1 0 1 2]; & &
x方向梯度算子(用于Harris角点提取算法)&
Ix = filter2(fx,ori_im); & &
x方向滤波&
% fy = [5 8 5;0 0 0;-5 -8 -5]; &
高斯函数一阶微分,y方向(用于改进的Harris角点提取算法)&
fy = [-2;-1;0;1;2]; & &
y方向梯度算子(用于Harris角点提取算法)&
Iy = filter2(fy,ori_im); & &
y方向滤波&
Ix2 = Ix.^2;&
Iy2 = Iy.^2;&
Ixy = Ix.*Iy;&
clear Ix;&
clear Iy;&
h= fspecial('gaussian',[7 7],2); &
产生7*7的高斯窗函数,sigma=2&
Ix2 = filter2(h,Ix2);&
Iy2 = filter2(h,Iy2);&
Ixy = filter2(h,Ixy);&
height = size(ori_im,1);&
width = size(ori_im,2);&
result = zeros(height,width); &
纪录角点位置,角点处值为1&
R = zeros(height,width);&
Rmax = 0; & &
&% 图像中最大的R值&
for i = 1:height&
& & for j =
& M = [Ix2(i,j) Ixy(i,j);Ixy(i,j) Iy2(i,j)];
& & & % auto
correlation matrix&
& R(i,j) = det(M)-0.04*(trace(M))^2;
& % 计算R&
& if R(i,j) & Rmax&
& & & Rmax =
for i = 2:height-1&
& & for j =
2:width-1&
& % 进行非极大抑制,窗口大小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 =
[posc, posr] = find(result == 1);&
&% 角点个数&
imshow(ori_im);&
plot(posr,posc,'r.');&
已投稿到:
以上网友发言只代表其个人观点,不代表新浪网的观点或立场。&>&&>&&>&&>&Harris角点算法提取图像特征点
Harris角点算法提取图像特征点
上传大小:5.16MB
本程序用vc6.0开发,采用Harris角点算法提取图像的关键点,效果较好
综合评分:4.2(44位用户评分)
所需积分:5
下载次数:119
审核通过送C币
创建者:zhangguo5
创建者:zhangguo5
创建者:zhangguo5
课程推荐相关知识库
上传者其他资源上传者专辑
开发技术热门标签
VIP会员动态
您因违反CSDN下载频道规则而被锁定帐户,如有疑问,请联络:!
android服务器底层网络模块的设计方法
所需积分:0
剩余积分:720
您当前C币:0
可兑换下载积分:0
兑换下载分:
兑换失败,您当前C币不够,请先充值C币
消耗C币:0
你当前的下载分为234。
Harris角点算法提取图像特征点
会员到期时间:
剩余下载次数:
你还不是VIP会员
开通VIP会员权限,免积分下载
你下载资源过于频繁,请输入验证码
您因违反CSDN下载频道规则而被锁定帐户,如有疑问,请联络:!
若举报审核通过,可奖励20下载分
被举报人:
tsenbai2006
举报的资源分:
请选择类型
资源无法下载
资源无法使用
标题与实际内容不符
含有危害国家安全内容
含有反动色情等内容
含广告内容
版权问题,侵犯个人或公司的版权
*详细原因:基于Harris角点和高斯差分的特征点提取算法pdf下载_爱问共享资料
(window.slotbydup=window.slotbydup || []).push({
id: '2370785',
container: s,
size: '146,102',
display: 'inlay-fix'
基于Harris角点和高斯差分的特征点提取算法.pdf
简介:本文档为《基于Harris角点和高斯差分的特征点提取算法pdf》,可适用于软件工程领域,主题内容包含第卷第期年月模式识别与人工智能基于角点和高斯差分的特征点提取算法关高健黄心汉彭刚王敏吴祖玉华中科技大学控制科学与工程系武汉。。摘要针对目前图像处理中符等。
基于Harris角点和高斯差分的特征点提取算法.pdf
基于Harris角点和高斯差分的特征点提取算法.pdf
简介:本文档为《基于Harris角点和高斯差分的特征点提取算法pdf》,可适用于软件工程领域,主题内容包含第卷第期年月模式识别与人工智能基于角点和高斯差分的特征点提取算法关高健黄心汉彭刚王敏吴祖玉华中科技大学控制科学与工程系武汉。。摘要针对目前图像处理中符等。
空空如也,TA还未上传任何资料~ ~
电力科技项目管理办法
难得的图像处理论文
难得的图像处理论文
难的图像处理论文
难的图像处理论文
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
刚刚上传了
在此可输入您对该资料的评论~
资料阅读排行
请选择举报的类型
赌博犯罪类
资料评价:
所需积分:2当前位置: &
求翻译:Harris角点检测算法是一种基于信号的点特征提取算子,其原理是将所处理的图像窗口 w(一般为矩形区域)向任意方向移动微小位移(x,y),则其灰度改变量可定义为:是什么意思?
Harris角点检测算法是一种基于信号的点特征提取算子,其原理是将所处理的图像窗口 w(一般为矩形区域)向任意方向移动微小位移(x,y),则其灰度改变量可定义为:
问题补充:
It is that a kind of some characteristics based on signal withdraw operators that some Harris angles detect algorithms, its principle to move minute displacement (x to arbitrary direction picture window w (general for rectangular area) not dealt with, y),its variation of grey level can be defined as
Harris corner detection algorithm is based on the signal feature extraction operator points, the principle is handled by the image window w (usually rectangular) move in any direction to the small displacement (x, y), then the gray-scale change volume can be defined as:
正在翻译,请等待...
The Harris vertex examination algorithm is one kind based on the signal spot characteristic extraction operator, its principle is image window w which processes (is generally rectangular region) to the random orientation moves moves small (x, y), then its gradation increment may define is:
Harris corner detection algorithm is based on signal feature extraction operator, the principle of which is handled by the image window w (usually a rectangle) to the mobile micro-displacement in any direction (x, y), the gray variation can be defined as:
It is that a kind of some characteristics based on signal withdraw operators that some Harris angles detect algorithms, its principle to move minute displacement (x to arbitrary direction picture window w (general for rectangular area) not dealt with, y),its variation of grey level can be defined as
我来回答:
参考资料:
* 验证码:
登录后回答可以获得积分奖励,并可以查看和管理所有的回答。 |
我要翻译和提问
请输入您需要翻译的文本!}

我要回帖

更多关于 harris算法详解 的文章

更多推荐

版权声明:文章内容来源于网络,版权归原作者所有,如有侵权请点击这里与我们联系,我们将及时删除。

点击添加站长微信