Python中OpenCV图像特征和harris角点检测

概念

Python中OpenCV图像特征和harris角点检测_第1张图片
Python中OpenCV图像特征和harris角点检测_第2张图片
Python中OpenCV图像特征和harris角点检测_第3张图片
Python中OpenCV图像特征和harris角点检测_第4张图片

第一步:计算一个梯度 Ix,Iy

Python中OpenCV图像特征和harris角点检测_第5张图片
Python中OpenCV图像特征和harris角点检测_第6张图片
Python中OpenCV图像特征和harris角点检测_第7张图片

第二步:整合矩阵,计算特征值

Python中OpenCV图像特征和harris角点检测_第8张图片

第三步:比较特征值的大小

Python中OpenCV图像特征和harris角点检测_第9张图片
Python中OpenCV图像特征和harris角点检测_第10张图片

第四步: 非极大值抑制,把真正的角点留下来,角点周围的过滤掉

代码实现

Python中OpenCV图像特征和harris角点检测_第11张图片

import cv2
import numpy as np

img =cv2.imread('pie.png')
print('img.shape',img.shape)
gray = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
#gray = np.float32(gray)
dst = cv2.cornerHarris(gray,2,3,0.04)
print('dst.shape',dst.shape)

Python中OpenCV图像特征和harris角点检测_第12张图片

img[dst>0.01*dst.max()]=[0,0,255]
cv2.imshow('dst',img)
cv2.waitKey(0)
cv2.destroyAllWindows()

Python中OpenCV图像特征和harris角点检测_第13张图片
Python中OpenCV图像特征和harris角点检测_第14张图片
Python中OpenCV图像特征和harris角点检测_第15张图片
Python中OpenCV图像特征和harris角点检测_第16张图片
Python中OpenCV图像特征和harris角点检测_第17张图片

到此这篇关于Python中OpenCV图像特征和harris角点检测的文章就介绍到这了,更多相关OpenCV-图像特征-harris角点检测内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!

你可能感兴趣的:(Python中OpenCV图像特征和harris角点检测)