Python OpenCV
About Lesson

In this Python OpenCV lesson we are going to learn about Python OpenCV Corner Detection, for this purpose we are going to use CornerHarris algorithm.

 

 

This is the complete code for this lesson.

 

 

 

 In this code we have loaded the image and also we have done conversion on our image, make sure that you have already added the image in your working directory.

 

 

 

OpenCV has the function cv2.cornerHarris() for this purpose. Its arguments are :

  • img – Input image, it should be grayscale and float32 type.
  • blockSize – It is the size of neighbourhood considered for corner detection
  • ksize – Aperture parameter of Sobel derivative used.
  • k – Harris detector free parameter in the equation.

 

 

 

Run the complete code and this is the result.

Python OpenCV Corner Detection
Python OpenCV Corner Detection