-
Notifications
You must be signed in to change notification settings - Fork 91
/
video_io.py
45 lines (37 loc) · 1.11 KB
/
video_io.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import cv2
def web_kamera():
#Varsayılan kamera
capture = cv2.VideoCapture(0)
while True:
ret, frame = capture.read()
# alınan görüntüyü göster
cv2.imshow('Web Kamera',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
def video_dosyasi():
capture = cv2.VideoCapture("videodosyasi.avi")
while True:
ret, frame = capture.read()
# alınan görüntüyü göster
cv2.imshow('Video Dosyası',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
def ip_kamera():
#Kullanıcı adı ve şifre ile local ip kamera yayınına erişim
capture = cv2.VideoCapture("http://admin:admin@192.168.1.51/cgi/stream.mjpg")
while True:
ret, frame = capture.read()
# alınan görüntüyü göster
cv2.imshow('Web Kamera',frame)
if cv2.waitKey(1) & 0xFF == ord('q'):
break
def fotograf_oku():
img = cv2.imread('foto.jpg')
cv2.imshow('Fotoğraf',img)
def main():
web_kamera()
#video_dosyasi()
#ip_kamera()
#fotograf_oku()
if __name__ == '__main__':
main()