Loading and Saving Images:
img = cv2.imread('image.jpg', cv2.IMREAD_COLOR)
cv2.imshow('image',img)
cv2.imwrite('output.jpg',img)
cv2.waitKey(0)
cv2.destroyAllWindows()
|
Image Properties:
img = cv2.imread('image.jpg', cv2.IMREAD_COLOR)
print('Image Shape:', img.shape)
print('Image Size:', img.size)
print('Image Datatype:', img.dtype)
|
Accessing a Camera/ Video Capture:
cap = cv2.VideoCapture(0)
while(True):
ret, frame = cap.read()
cv2.imshow('frame',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
|
Accessing a Video File:
cap = cv2.VideoCapture('video.mp4')
while(cap.isOpened()):
ret, frame = cap.read()
cv2.imshow('frame',frame)
if cv2.waitKey(25) & 0xFF == ord('q'):
break
|
Video Writer:
cap = cv2.VideoCapture(0)
fourcc = cv2.VideoWriter_fourcc(*'XVID') #Codec
out = cv2.VideoWriter('output.avi',fourcc, 20.0, (640,480)) #Create video writer
while(cap.isOpened()):
ret, frame = cap.read() #Capture frame-by-frame
if ret==True:
out.write(frame) #Write frame to output video
cv2.imshow('frame',frame) #Display frame
if cv2.waitKey(1) & 0xFF == ord('q'): #Exit loop on 'q' key press
break
else:
break
cap.release() #Release camera
out.release() #Release video writer
cv2.destroyAllWindows()
|
Colorspace Conversion:
img = cv2.imread('image.jpg', cv2.IMREAD_COLOR)
gray_img = cv2.cvtColor(img, cv2.COLOR_BGR2GRAY)
hsv_img = cv2.cvtColor(img, cv2.COLOR_BGR2HSV)
|
Blurring:
gaussian_blur = cv2.GaussianBlur(img, (5, 5), 0)
median_blur = cv2.medianBlur(img, 5)
bilateral_filter = cv2.bilateralFilter(img, 9, 75, 75)
|
Image Filtering:
img = cv2.imread('image.jpg')
kernel = np.ones((5,5),np.float32)/25
convolution = cv2.filter2D(img,-1,kernel) #2D Convolution
blur = cv2.blur(img,(5,5)) # Image Blurring (averaging)
gaussian_blur = cv2.GaussianBlur(img, (5,5),0) # Gaussian Blurring
median_blur = cv2.medianBlur(img, 5) # Median Blurring
bilateral_filter = cv2.bilateralFilter(img, 9, 75, 75) #Bilateral Filtering
|
Edge Detection:
img = cv2.imread('image.jpg', 0) # Read image in grayscale
edges_canny = cv2.Canny(img, 100, 200)
edges_sobel = cv2.Sobel(img, cv2.CV_64F, 1, 0) + cv2.Sobel(img, cv2.CV_64F, 0, 1)
edges_log = cv2.Laplacian(cv2.GaussianBlur(img, (3, 3), 0), cv2.CV_64F)
cv2.imshow('Original', img)
cv2.imshow('Canny Edges', edges_canny)
cv2.imshow('Sobel Edges', edges_sobel)
cv2.imshow('LoG Edges', edges_log)
cv2.waitKey(0)
cv2.destroyAllWindows()
|
Morphological Operations:
kernel = np.ones((5,5),np.uint8)
erosion = cv2.erode(img,kernel,iterations = 1)
dilation = cv2.dilate(img,kernel,iterations = 1)
opening = cv2.morphologyEx(img, cv2.MORPH_OPEN, kernel)
closing = cv2.morphologyEx(img, cv2.MORPH_CLOSE, kernel)
|
Histogram Equalization:
eq_img = cv2.equalizeHist(img)
|
Hough Transform:
img = cv2.imread('image.jpg', cv2.IMREAD_GRAYSCALE)
edges = cv2.Canny(img,50,150,apertureSize = 3) #Canny edge detection
lines = cv2.HoughLines(edges,1,np.pi/180,200) #Hough transform
for rho,theta in lines[0]:
a = np.cos(theta)
b = np.sin(theta)
x0 = a*rho
y0 = b*rho
x1 = int(x0 + 1000*(-b))
y1 = int(y0 + 1000*(a))
x2 = int(x0 - 1000*(-b))
y2 = int
|
Thresholding:
img = cv2.imread('image.jpg', cv2.IMREAD_GRAYSCALE)
ret,thresh1 = cv2.threshold(img,127,255,cv2.THRESH_BINARY) #Binary thresholding
ret,thresh2 = cv2.threshold(img,127,255,cv2.THRESH_BINARY_INV) #Inverse binary thresholding
ret,thresh3 = cv2.threshold(img,127,255,cv2.THRESH_TRUNC) #Truncated thresholding
ret,thresh4 = cv2.threshold(img,127,255,cv2.THRESH_TOZERO) #Threshold to zero
ret,thresh5 = cv2.threshold(img,127,255,cv2.THRESH_TOZERO_INV) #Inverse threshold to zero
adaptive_thresh = cv2.adaptiveThreshold(img,255,cv2.ADAPTIVE_THRESH_GAUSSIAN_C,cv2.THRESH_BINARY,11,2) #Adaptive thresholding
|
Image Pyramids:
img = cv2.imread('image.jpg', cv2.IMREAD_COLOR)
lower_reso = cv2.pyrDown(img)
higher_reso = cv2.pyrUp(img)
|
|
Created By
Metadata
Comments
No comments yet. Add yours below!
Add a Comment