diff options
author | Florian Jung <flo@windfisch.org> | 2014-12-20 20:25:25 +0100 |
---|---|---|
committer | Florian Jung <flo@windfisch.org> | 2014-12-20 20:25:25 +0100 |
commit | bebe709f46a53e1752dc220070613df25c285e4f (patch) | |
tree | 7869a8c7743623fd0ab5a88b57b7c8adbfb68b12 /server.py | |
parent | 0fbdbb674022239356a0da7aae7ea91d91662c9a (diff) |
image server
Diffstat (limited to 'server.py')
-rw-r--r-- | server.py | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -26,14 +26,19 @@ while True: connection, client_address = sock.accept() try: print >>sys.stderr, 'connection from', client_address + cap = cv2.VideoCapture("/home/flo/outvid2.avi") # Receive the data in small chunks and retransmit it while True: data = connection.recv(16) print >>sys.stderr, 'received "%s"' % data if data: - print >>sys.stderr, 'sending data back to the client' - connection.sendall(data) + if data=="get\n": + status, frame = cap.read() + print >>sys.stderr, 'sending image to the client' + connection.sendall(frame.tostring()) + cv2.imshow("img",frame) + cv2.waitKey(20) else: print >>sys.stderr, 'no more data from', client_address break @@ -42,7 +47,6 @@ while True: # Clean up the connection connection.close() -cap = cv2.VideoCapture("/home/flo/outvid2.avi") while True: status, frame = cap.read() cv2.imshow("img",frame) |