|
| 1 | +#!/usr/bin/env python2 |
| 2 | +# -*- coding: utf-8 -*- |
| 3 | +# |
| 4 | +# receive_stream.py |
| 5 | +# |
| 6 | +# Copyright 2014 Giorgio Gilestro <giorgio@gilest.ro> |
| 7 | +# |
| 8 | +# This program is free software; you can redistribute it and/or modify |
| 9 | +# it under the terms of the GNU General Public License as published by |
| 10 | +# the Free Software Foundation; either version 2 of the License, or |
| 11 | +# (at your option) any later version. |
| 12 | +# |
| 13 | +# This program is distributed in the hope that it will be useful, |
| 14 | +# but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 16 | +# GNU General Public License for more details. |
| 17 | +# |
| 18 | +# You should have received a copy of the GNU General Public License |
| 19 | +# along with this program; if not, write to the Free Software |
| 20 | +# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, |
| 21 | +# MA 02110-1301, USA. |
| 22 | +# |
| 23 | +# |
| 24 | + |
| 25 | +import cv2 |
| 26 | +import socket, io, struct |
| 27 | +from PIL import Image |
| 28 | +import numpy as np |
| 29 | + |
| 30 | + |
| 31 | +title = "streaming test" |
| 32 | +cv2.namedWindow(title, cv2.CV_WINDOW_AUTOSIZE) |
| 33 | + |
| 34 | +def open_with_socket(): |
| 35 | + |
| 36 | + # Connect a client socket to my_server:8000 (change my_server to the |
| 37 | + # hostname of your server) |
| 38 | + client_socket = socket.socket() |
| 39 | + client_socket.connect(('192.168.1.201', 8000)) |
| 40 | + connection = client_socket.makefile('rb') |
| 41 | + |
| 42 | + try: |
| 43 | + while True: |
| 44 | + # Read the length of the image as a 32-bit unsigned int. If the |
| 45 | + # length is zero, quit the loop |
| 46 | + image_len = struct.unpack('<L', connection.read(4))[0] |
| 47 | + if not image_len: |
| 48 | + break |
| 49 | + # Construct a stream to hold the image data and read the image |
| 50 | + # data from the connection |
| 51 | + image_stream = io.BytesIO() |
| 52 | + image_stream.write(connection.read(image_len)) |
| 53 | + # Rewind the stream, open it as an image with PIL and do some |
| 54 | + # processing on it |
| 55 | + image_stream.seek(0) |
| 56 | + image = Image.open(image_stream).convert('RGB') |
| 57 | + cv_image = np.array(image) |
| 58 | + cv2.imshow( title, cv_image ) |
| 59 | + |
| 60 | + key = cv2.waitKey(20) |
| 61 | + if key > 0: # exit on ESC |
| 62 | + break |
| 63 | + finally: |
| 64 | + connection.close() |
| 65 | + client_socket.close() |
| 66 | + |
| 67 | + |
| 68 | +def open_with_cv(): |
| 69 | + |
| 70 | + cap = cv2.VideoCapture("192.168.1.201:9000") |
| 71 | + |
| 72 | + while(True): |
| 73 | + ret, frame = cap.read() |
| 74 | + |
| 75 | + #gray = cv2.cvtColor(frame, cv2.COLOR_BGR2GRAY) |
| 76 | + |
| 77 | + # Display the resulting frame |
| 78 | + cv2.imshow(title, frame) |
| 79 | + if cv2.waitKey(1) & 0xFF == ord('q'): |
| 80 | + break |
| 81 | + |
| 82 | + # When everything done, release the capture |
| 83 | + cap.release() |
| 84 | + cv2.destroyAllWindows() |
| 85 | + |
| 86 | +#open_with_cv() |
| 87 | +open_with_socket() |
0 commit comments