Updated Multi Server Mode for NetGear API (markdown) authored by Abhishek Thakur's avatar Abhishek Thakur
...@@ -91,7 +91,7 @@ import cv2 ...@@ -91,7 +91,7 @@ import cv2
options = {'multiserver_mode': True} options = {'multiserver_mode': True}
#Change the Client with your system IP address and port address of each unique Server((5566,5567) in our case), plus activate pattern Pub/Sub(`2`), `recieve_mode`, and `logging` for debugging #Change the Client with your system IP address and port address of each unique Server((5566,5567) in our case), plus activate pattern Pub/Sub(`2`), `recieve_mode`, and `logging` for debugging
client = NetGear(port = (5566,5567), protocol = 'tcp', pattern = 2, receive_mode = True, **options) client = NetGear(address = 192.168.x.x, port = (5566,5567), protocol = 'tcp', pattern = 2, receive_mode = True, **options)
#define frame received dict #define frame received dict
frame_dict = {} frame_dict = {}
... ...
......