You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
595 B
23 lines
595 B
5 years ago
|
import base64
|
||
|
import cv2
|
||
|
import zmq
|
||
|
|
||
|
context = zmq.Context()
|
||
|
footage_socket = context.socket(zmq.PUB)
|
||
|
footage_socket.connect('tcp://localhost:5555')
|
||
|
|
||
|
camera = cv2.VideoCapture(0) # init the camera
|
||
|
|
||
|
while True:
|
||
|
try:
|
||
|
grabbed, frame = camera.read() # grab the current frame
|
||
|
frame = cv2.resize(frame, (640, 480)) # resize the frame
|
||
|
encoded, buffer = cv2.imencode('.jpg', frame)
|
||
|
jpg_as_text = base64.b64encode(buffer)
|
||
|
footage_socket.send(jpg_as_text)
|
||
|
|
||
|
except KeyboardInterrupt:
|
||
|
camera.release()
|
||
|
cv2.destroyAllWindows()
|
||
|
break
|