percept_simulator_2023/online_sender.py
2023-07-31 15:30:18 +02:00

19 lines
459 B
Python

#%%
from processing_chain.OnlineEncoding import OnlineEncoding
from communication.communicate_sender import sender
verbose = "cv2"
source = "GoProWireless"
online_encoding = OnlineEncoding(source=source, verbose=verbose)
VERBOSE: bool = False
url: str = "tcp://localhost:5555" # number specifies communication channel
sender(url=url, sender_processing=online_encoding, max_processing=-1, VERBOSE=VERBOSE)
del online_encoding
# %%