import time import zmq import numpy as np import cv2 context = zmq.Context() socket = context.socket(zmq.PUB) socket.bind('tcp://192.168.1.165:2000') cap = cv2.VideoCapture(0) # Allow clients to connect before sending data time.sleep(0.1) #a = np.random.rand(1024,720,3) while True: ret, frame = cap.read() font = cv2.FONT_HERSHEY_SIMPLEX img_flip_lr = cv2.flip(frame, 1) org = (50, 50) # fontScale fontScale = 1 # Blue color in BGR color = (255, 0, 0) # Line thickness of 2 px thickness = 2 zaman = time.time() zaman = str(zaman) # Using cv2.putText() method img_flip_lr = cv2.putText(img_flip_lr, zaman, org, font, fontScale, color, thickness, cv2.LINE_AA) socket.send_pyobj(img_flip_lr) print("gönderdim") cv2.imshow('server',img_flip_lr) if cv2.waitKey(1) & 0xFF == ord('q'): break cap.release() cv2.destroyAllWindows()