You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Harris_Corner_Detection/README.md
+12Lines changed: 12 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,18 @@ Harris Corner Detection
5
5
=>The idea behind the Harris method is to detect points based on the intensity variation in a localneighborhood: a small region around the feature should showa large intensity change when comparedwith windows shifted in any direction.
6
6
7
7
8
+
cv2.cornerHarris(src, blockSize, ksize, k)
9
+
10
+
Parameters Explained:
11
+
12
+
src – Input single-channel 8-bit or floating-point image.
13
+
dst – Image to store the Harris detector responses. It has the type CV_32FC1 and the same size as src .
14
+
blockSize – Neighborhood size (see the details on cornerEigenValsAndVecs() ).
15
+
ksize – Aperture parameter for the Sobel() operator.
0 commit comments