资源简介
对后续开发fast新代码有很好的借鉴作用,对MATLAB应用也是一个很好的推广作用,希望可以帮助到需要的人,谢谢。
代码片段和文件信息
%FAST_CORNER_DETECT_9 perform an 9 point FAST corner detection.
% corners = FAST_CORNER_DETECT_9(image threshold) performs the detection on the image
% and returns the X coordinates in corners(:1) and the Y coordinares in corners(:2).
function coords = fast_corner_detect_9(im threshold)
sz = size(im);
xsize=sz(2);
ysize=sz(1);
cs = zeros(5000 2);
nc = 0;
for x = 4 : xsize - 3
for y = 4 : ysize -3
cb = im(yx) + threshold;
c_b= im(yx) - threshold;
if im(y+0x+3) > cb
if im(y+-3x+1) > cb
if im(y+2x+2) > cb
if im(y+-2x+-2) > cb
if im(y+-1x+3) > cb
if im(y+1x+3) > cb
if im(y+-2x+2) > cb
if im(y+-3x+0) > cb
if im(y+-3x+-1) > cb
elseif im(y+-3x+-1) < c_b
continue;
else
if im(y+3x+0) > cb
if im(y+3x+1) > cb
else
continue;
end
else
continue;
end
end
elseif im(y+-3x+0) < c_b
continue;
else
if im(y+3x+-1) > cb
if im(y+3x+0) > cb
if im(y+3x+1) > cb
else
continue;
end
else
continue;
end
else
continue;
end
end
elseif im(y+-2x+2) < c_b
continue;
else
if im(y+3x+-1) > cb
if im(y+1x+-3) > cb
- 上一篇:多变量函数优化的L-BFGS算法matlab程序
- 下一篇:计算ADC的动态参数
相关资源
- 演化博弈matlab源代码
- 入侵杂草算法matlab源代码
- KNN分类MatLAB源代码附论文
- 直方图均衡化Matlab源代码
- 人造地震动matlab源代码
- 神经网络用于模式识别及MATLAB源代码
- canny算子matlab源代码本人亲测可用
- FRFT程序,分数阶傅里叶变换的matlab源
- 图像质量评价matlab源代码
- TDOA_AOA定位的扩展卡尔曼滤波算法MA
- 遗传算法matlab源代码
- canny算子matlab源代码
- BFO算法的MATLAB源代码
- PSO优化RBFNN的MATLAB源代码
- csma/ca和csma/cd的matlab源代码仿真
- 粒子群优化的极限学习机matlab源代码
- 神经网络算法-matlab源代码
- EM算法MATLAB源代码
- 自适应核密度估计MATLAB源代码
- 神经网络 反向传播 matlab源代码 设计
- 利用bp神经网络算法,进行交通预测的
- EMD HHT MATLAB源代码,适合初学者
- 第一范数最小化matlab源代码
- 各种数字水印的matlab源代码
- Matlab车牌定位源代码
- 基于遗传神经网络的图像分割MATLAB源
- 微电网负荷预测matlab源代码
- Fast ICA matlab源代码
- 小波图像增强matlab源代码
- Harris算子 Matlab源代码 直接可以运行
评论
共有 条评论