Filters are used for removing unwanted information and to amplify the feature of interest or region of interest. Each image has few characteristic, one among which is frequency.
Frequency in Images
High Frequency image
Low Frequency Image
Fourier Transform
Sobel Filter
import cv2
import matplotlib.pyplot as plt
import numpy as np
%matplotlib inline
light_house = cv2.imread("../Images/light_house.jpeg")
image_copy = np.copy(light_house)
lh_rgb = cv2.cvtColor(image_copy,cv2.COLOR_BGR2RGB)
plt.figure(figsize=(6, 8))
plt.imshow(lh_rgb)
<matplotlib.image.AxesImage at 0x7ff9d41ab7c0>
lh_grayscale = cv2.cvtColor(lh_rgb,cv2.COLOR_RGB2GRAY)
plt.figure(figsize=(6, 8))
plt.title("Grayscale Image")
plt.imshow(lh_grayscale,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9f8785370>
vertical_kernal = np.array([[-1,0,1],
[-2,0,2],
[-1,0,1]])
filtered_img = cv2.filter2D(lh_grayscale,-1,vertical_kernal)
retval,black_white_img = cv2.threshold(filtered_img,70,255,cv2.THRESH_BINARY)
f, (ax1, ax2) = plt.subplots(1,2,figsize=(20,10))
ax1.set_title("Applying Sobel Filter On top grayscale image")
ax1.imshow(filtered_img, cmap='gray')
ax2.set_title("Creating Binary Image after applying Sobel Filter")
ax2.imshow(black_white_img, cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9f86abf70>
High Pass filter
Low Pass Filter(LPF)
Edge Handling
Extend The nearest border pixels are conceptually extended as far as necessary to provide values for the convolution. Corner pixels are extended in 90° wedges. Other edge pixels are extended in lines.
Padding The image is padded with a border of 0's, black pixels.
Crop Any pixel in the output image which would require values from beyond the edge is skipped. This method can result in the output image being slightly smaller, with the edges having been cropped.
Gradients
Noise
Before Applying HPF on an image, its better to remove the noise from the image because HPF exaggerate the image intensity so viceversa it will also increase the noise content of the image. So we will apply LPF before HPF to reduce the noise in the image.
Applying Low Pass Filter
gray_blur = cv2.GaussianBlur(lh_grayscale,(5,5),0)
plt.figure(figsize=(6, 8))
plt.title("Image With Gaussian Blur")
plt.imshow(gray_blur,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9f8623370>
filtered_image = cv2.filter2D(gray_blur,-1,vertical_kernal)
plt.figure(figsize=(6, 8))
plt.title("Applying HPF after LPF to reduce the noise")
plt.imshow(filtered_image,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9f85ff580>
# Create Binary Image
retval,black_white_img_blur = cv2.threshold(filtered_image,80,255,cv2.THRESH_BINARY)
f, (ax1,ax2) = plt.subplots(1,2,figsize=(14, 12))
ax1.set_title("Original Binary Image")
ax1.imshow(black_white_img,cmap='gray')
ax2.set_title("Blurred Binary Image")
ax2.imshow(black_white_img_blur,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9f8533fd0>
*The noise in the image is reduced drastically after applying low pass filter like Gaussian Blur to reduce the noise and then applying filter like Sobel Filter (Edge Detector).*
A series of steps in Canny Edge Detection
Its better to have threshold (l:h) value as (1:2 or 1:3) for better results
lower = 80
upper = 160
edge = cv2.Canny(lh_grayscale,lower,upper)
plt.figure(figsize=(6, 8))
plt.imshow(edge,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9f84d2e50>
wide = cv2.Canny(lh_grayscale,60,100)
tight = cv2.Canny(lh_grayscale,200,240)
f, (ax1,ax2) = plt.subplots(1,2,figsize=(20,10))
ax1.set_title("Wide Canny Edge Detection")
ax1.imshow(wide,cmap='gray')
ax2.set_title("Tight Canny Edge Detection")
ax2.imshow(tight,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9d4136dc0>
After finding Edges, it is obvious that we find the object which is encapsulated by the edges. So Hough Transform helps in transforming image data from the x-y coordinate system into Hough space, where you can easily identify simple boundaries like lines and circles. HT is used in shape recognition applications.
Line Detection
Hough space - it converts line in image space into a point in Hough Space. Line equation is "y = mx + c" where m and c are constant. So (m,c) point in hough space is the point convert from line.
lh_rgb = cv2.cvtColor(light_house,cv2.COLOR_BGR2RGB)
lh_gray = cv2.cvtColor(lh_rgb,cv2.COLOR_RGB2GRAY)
low = 200
high = 240
lh_canny = cv2.Canny(lh_gray,low,high)
plt.figure(figsize=(6, 8))
plt.title("Canny Edge Detection")
plt.imshow(lh_canny,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9d412aa60>
rho = 1
theta = np.pi/180
threshold = 60
max_line_length = 40
max_line_gap = 5
lines = cv2.HoughLinesP(lh_canny,rho,theta,threshold, np.array([]),max_line_length,max_line_gap)
line_img = np.copy(lh_rgb)
for line in lines:
for x1,y1,x2,y2 in line:
cv2.line(line_img,(x1,y1),(x2,y2),(255,0,0),10)
plt.imshow(line_img,cmap='gray')
<matplotlib.image.AxesImage at 0x7ff9d4043850>