import cv2
import sys
import numpy
= 0 # Preview Mode
PREVIEW = 1 # Blurring Filter
BLUR = 2 # Corner Feature Detector
FEATURES = 3 # Canny Edge Detector
CANNY
= dict(maxCorners=500, qualityLevel=0.2, minDistance=15, blockSize=9)
feature_params
# Setup the camera feed using the local device similar to what we did in an earlier page
= 0
s #if len(sys.argv) > 1:
#bbbbbbbbbbbbbbbbbbbbbbbbbbbbf s = sys.argv[1]
= PREVIEW
image_filter = True
alive
= "Camera Filters"
win_name
cv2.namedWindow(win_name, cv2.WINDOW_NORMAL)= None
result
= cv2.VideoCapture(s)
source
# Read the first frame of the video
while alive:
= source.read()
has_frame, frame if not has_frame:
break
# Flip the video horizontally so it's easier to point and image will not be reversed as I watch it
= cv2.flip(frame, 1)
frame
# Here depending on the user input, we will perform one of the functions in opencv
# In preview mode we just send that frame into result and send it to cv2.imshow() to diplay it. If any other option we process the result first then send the processed result to display it
if image_filter == PREVIEW:
= frame
result elif image_filter == CANNY:
= cv2.Canny(frame, 80, 150) #lower & upper threshold anything above will be used as edge, if below it's discarded
result elif image_filter == BLUR:
= cv2.blur(frame, (13, 13)) #dimension for blur box kernel, smaller size results in less blurring
result elif image_filter == FEATURES:
= frame
result = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY)
frame_gray = cv2.goodFeaturesToTrack(frame_gray, **feature_params)
corners if corners is not None:
for x, y in numpy.float32(corners).reshape(-1, 2):
10, (0, 255, 0), 1)
cv2.circle(result, (x, y),
cv2.imshow(win_name, result)
# Next section is to wait for user input on the keyboard
= cv2.waitKey(1)
key if key == ord("Q") or key == ord("q") or key == 27:
= False
alive elif key == ord("C") or key == ord("c"):
= CANNY
image_filter elif key == ord("B") or key == ord("b"):
= BLUR
image_filter elif key == ord("F") or key == ord("f"):
= FEATURES
image_filter elif key == ord("P") or key == ord("p"):
= PREVIEW
image_filter
source.release() cv2.destroyWindow(win_name)
Edge Detection
- We will cover techniques that are used in object detection.
- We already have all the assets from previous pages so let’s dive in with the code
- We will turn the camera on and send the feed to the window to view. The filtering is controlled by using the letters on the keyboard specified in the code
- We will manipulate the blurring of the image, this could be used for feature extraction. Some extraction is done while blurring an image to make other edges stand out
- We will also view the corner detection features - this is done by holding a sheet with printed text on them and seeing how the corners are detected. Notice the effect of corner detection on larger letters, as well as blended in letters as opposed to clear definitive letters
- We will finally look at the CANNY edge detection - which makes the image all dark except for the outline/edges of objects. The threshold for the detection can be changed from 80 to 145 which makes the two values closer will effect how sharp the detection is. So the wider the numbers are as they are now 80-145 should provide a more distinct detection. Tuning is dependent on the application
- I will explain the logic behind the code
- We start off by defining the 4 different run modes for the scrip which include Preview, … CANNY Edge
- Set the dictionary for the corner features parameters
- Max number of corners to be returned
- Max value for the threshold to be detected. SO if you had a max value of features detected to be 100 then the max features corners would be 100X0.2=20 which would be the threshold of whether a featured corner was detected
- Min Distance between adjacent corners measured in pixel space
- Blocksize is the size of the pixel neighborhood used by the algorithm for computing the featured corners
- In the Last feature below in the code, we use cv2.cvtColor() to convert the image to grayscale, and then we use goodFeaturesToTrack() to generate the Corners.
- The list of corners are shown using green circles on the image and send it to the output screen
.