-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathReceiver_gray_scale.py
57 lines (46 loc) · 1.42 KB
/
Receiver_gray_scale.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
46
47
48
49
50
51
52
53
54
55
56
57
import zmq
import pyaudio
from cv2 import VideoCapture
import cv2
import numpy
import struct
import bz2
import time
import sys
ip = "127.0.0.1"
port = 8000
try:
ip = sys.argv[1]
port = sys.argv[2]
except:
print("Please include the server IP and port")
exit()
PyAudio = pyaudio.PyAudio()
stream = PyAudio.open(8000,1,pyaudio.paFloat32 ,False,True,None,None,256,True,None,None)
context = zmq.Context()
SubscribeSocket = context.socket(zmq.SUB)
SubscribeSocket.connect("tcp://"+ip+":%s" % port) #Connect to server
SubscribeSocket.setsockopt(zmq.SUBSCRIBE, b"")
def AddFPS(frame1,string):
cv2.putText(frame1,string,(0,25),cv2.FONT_HERSHEY_SIMPLEX,1,(255,0,0),2, cv2.LINE_AA)
return frame1
frames = 0
fps = 30
timea = time.time()
while True:
compressed = SubscribeSocket.recv() #Receive packet
buffer = bz2.decompress(compressed)
if buffer[0] == ord("A"):
stream.write(buffer[1:])
continue
shape = struct.unpack("HH",buffer[1:5])
frameBytes = buffer[5:] #Get Frame Bytes
frame = numpy.frombuffer(frameBytes,dtype = numpy.uint8).reshape((shape[0],shape[1])) #Convert bytes to frame array
frame = cv2.resize(frame,(int(640*1.5),int(480*1.5))) #Upscale Frame
frames += 1
if(time.time() - timea > 5):
timea = time.time()
fps = frames//5
frames = 0
cv2.imshow("Video",AddFPS(frame,str(fps)+" FPS")) #Display the frame
cv2.waitKey(1)