mirror of
https://github.com/metafy-social/python-scripts.git
synced 2024-11-24 04:21:12 +00:00
14 lines
301 B
Python
14 lines
301 B
Python
import cv2
|
|
|
|
cap = cv2.VideoCapture(0)
|
|
|
|
while True:
|
|
success, img = cap.read()
|
|
|
|
blurImage = cv.GaussianBlur(img,(5,5),0)
|
|
grayImg = cv2.cvtColor(img,cv2.COLOR_BGR2GRAY)
|
|
cv2.imshow("Grayimage", grayImg)
|
|
cv2.imshow("Blur", blurImage)
|
|
cv2.imshow("image",img)
|
|
cv2.waitKey(10)
|