Replies: 2 comments
-
@kutu Hi, how can I solve this problem? |
Beta Was this translation helpful? Give feedback.
-
I've had the same problem. I think your issue is the number of times you are trying to loop thru sending the data. You may want to freeze the data before you try and send it first.
Your latency between sending variables might be too short. Since sockets using TCP guarantees delivery it might be bottle necking and can't retrieve all of the data before the next packet is sent. You could either extend the time between frames to 1/60 which will give you 60 times per second and will match your video frame rate or switch to UDP so the guarantee no longer applies and you can process packets as they are able to be processed. |
Beta Was this translation helpful? Give feedback.
-
Hi,
Is it possible to send my telemetry data through a TCP/IP port (e.g. 5000). This is my code:
I want to send this data so my neural network can process that input, but I get the following problem:
Any particular reason?
Beta Was this translation helpful? Give feedback.
All reactions