Created
August 17, 2018 10:25
-
-
Save gonzaloruizdevilla/f6651d9b8c96362de633e15bb9329508 to your computer and use it in GitHub Desktop.
Magnitude of the gradient Sobel
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import numpy as np | |
import cv2 | |
import matplotlib.pyplot as plt | |
import matplotlib.image as mpimg | |
import pickle | |
# Read in an image | |
image = mpimg.imread('signs_vehicles_xygrad.png') | |
# Define a function that applies Sobel x and y, | |
# then computes the magnitude of the gradient | |
# and applies a threshold | |
def mag_thresh(img, sobel_kernel=3, mag_thresh=(0, 255)): | |
# Apply the following steps to img | |
# 1) Convert to grayscale | |
# 2) Take the gradient in x and y separately | |
# 3) Calculate the magnitude | |
# 4) Scale to 8-bit (0 - 255) and convert to type = np.uint8 | |
# 5) Create a binary mask where mag thresholds are met | |
# 6) Return this mask as your binary_output image | |
gray = cv2.cvtColor(img, cv2.COLOR_RGB2GRAY) | |
sobelx = cv2.Sobel(gray, cv2.CV_64F, 1, 0, ksize=sobel_kernel) | |
sobely = cv2.Sobel(gray, cv2.CV_64F, 0, 1, ksize=sobel_kernel) | |
abs_sobelx = np.absolute(sobelx) | |
abs_sobelx = np.absolute(sobelx) | |
abs_sobel = np.sqrt(np.square(sobelx) + np.square(sobely)) | |
scaled_sobel = np.uint8(255*abs_sobel/np.max(abs_sobel)) | |
sbinary = np.zeros_like(scaled_sobel) | |
sbinary[(scaled_sobel >= mag_thresh[0]) & (scaled_sobel <= mag_thresh[1])] = 1 | |
return sbinary | |
# Run the function | |
mag_binary = mag_thresh(image, sobel_kernel=9, mag_thresh=(30, 100)) | |
# Plot the result | |
f, (ax1, ax2) = plt.subplots(1, 2, figsize=(24, 9)) | |
f.tight_layout() | |
ax1.imshow(image) | |
ax1.set_title('Original Image', fontsize=50) | |
ax2.imshow(mag_binary, cmap='gray') | |
ax2.set_title('Thresholded Magnitude', fontsize=50) | |
plt.subplots_adjust(left=0., right=1, top=0.9, bottom=0.) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment