搜索资源列表
corner_detector
- 这是用matlab写的一个corner detector, 效果比现在流行的Harris,susan,CSS等效果要好。 Matlab 确实如此,效果很好,不管是边缘还是角点 -Algorithm is derived from: X.C. He and N.H.C. Yung, Curvature Scale Space Corner Detector with Adaptive Threshold and Dynamic Region of Support , Proceedin
harris_jd
- harris 算法,可以检查角度,就是角点检测-Harris algorithm, can check the angle, that is, the corner point detecting
harris
- 在一幅图像中找到角点。harris算法实现。效果不错。-Find a corner in an image. harris algorithm. Good results.
harris
- 数字图像中尖端点检测,采用了Harris算法,然后运用susan算法思想进行改进,使用时后面if程序的一些条件要适当改一下-Digital image edge detection, using the Harris algorithm, and then use thought susan algorithm is improved when you use the latter procedure if a number of conditions to change what should
improved-harris
- 从经典的Harris角点检测方法不难看出,该算法的稳定性和k有关,而k是个经验值,不好把握,浮动也有可能较大。鉴于此,改进的Harris方法()直接计算出两个特征值,通过比较两个特征值直接分类,这样就不用计算Harris响应函数了。 另一方面,我们不再用非极大值抑制了,而选取容忍距离:容忍距离内只有一个特征点。该算法首先选取一个具有最大最小特征值的点(即:max(min(e1,e2)),e1,e2是harris矩阵的特征值)作为角点,然后依次按照最大最小特征值顺序寻找余下的角点,当然和前一