OpenCV | OpenCV哈里斯 (Harris)角点检测

举报
DrugAI 发表于 2021/07/15 04:03:21 2021/07/15
【摘要】 环境 pip install opencv-python==3.4.2.16 pip install opencv-contrib-python==3.4.2.16 理论 克里斯·哈里斯(Chris Harris)和迈克·史蒂芬斯(Mike Stephens)在1988年的论文《组合式拐角和边缘检测器》中做了一次尝试找到这些拐角的尝试,所以现在将其称为哈里斯拐角检测器。...

环境


  
  1. pip install opencv-python==3.4.2.16
  2. pip install opencv-contrib-python==3.4.2.16

理论

克里斯·哈里斯Chris Harris)和迈克·史蒂芬斯(Mike Stephens)在1988年的论文《组合式拐角和边缘检测器》中做了一次尝试找到这些拐角的尝试,所以现在将其称为哈里斯拐角检测器。

函数:cv2.cornerHarris()cv2.cornerSubPix()

示例代码


  
  1. import cv2
  2. import numpy as np
  3. filename = 'molecule.png'
  4. img = cv2.imread(filename)
  5. gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
  6. gray = np.float32(gray)
  7. dst = cv2.cornerHarris(gray,2,3,0.04)
  8. #result is dilated for marking the corners, not important
  9. dst = cv2.dilate(dst,None)
  10. # Threshold for an optimal value, it may vary depending on the image.
  11. img[dst>0.01*dst.max()]=[0,0,255]
  12. cv2.imshow('dst',img)
  13. if cv2.waitKey(0) & 0xff == 27:
  14. cv2.destroyAllWindows()

原图

输出图


 

SubPixel精度的角落


  
  1. import cv2
  2. import numpy as np
  3. filename = 'molecule.png'
  4. img = cv2.imread(filename)
  5. gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
  6. # find Harris corners
  7. gray = np.float32(gray)
  8. dst = cv2.cornerHarris(gray,2,3,0.04)
  9. dst = cv2.dilate(dst,None)
  10. ret, dst = cv2.threshold(dst,0.01*dst.max(),255,0)
  11. dst = np.uint8(dst)
  12. # find centroids
  13. ret, labels, stats, centroids = cv2.connectedComponentsWithStats(dst)
  14. # define the criteria to stop and refine the corners
  15. criteria = (cv2.TERM_CRITERIA_EPS + cv2.TERM_CRITERIA_MAX_ITER, 100, 0.001)
  16. corners = cv2.cornerSubPix(gray,np.float32(centroids),(5,5),(-1,-1),criteria)
  17. # Now draw them
  18. res = np.hstack((centroids,corners))
  19. res = np.int0(res)
  20. img[res[:,1],res[:,0]]=[0,0,255]
  21. img[res[:,3],res[:,2]] = [0,255,0]
  22. cv2.imwrite('subpixel5.png',img)

输出图


参考

https://opencv-python-tutroals.readthedocs.io/en/latest/py_tutorials/py_feature2d/py_features_harris/py_features_harris.html#harris-corners

文章来源: drugai.blog.csdn.net,作者:DrugAI,版权归原作者所有,如需转载,请联系作者。

原文链接:drugai.blog.csdn.net/article/details/103044562

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。