I have a Jetson TX2 running a machine vision algorithm, and I'd like to communicate the output from this board to a Windows 10 PC in some way.
The data being sent is tiny - on the scale of a vector of ~100 floats at worst, and the refresh rate I need is nothing crazy - the limiting factor will be that the frames from the camera going to the Jetson board are being grabbed at ~60 FPS.
I'm open to suggestions using either Ethernet cables (preferred) or USB cables. The code on the Jetson is written in Python, and the output will be picked up by a C# application running on the Windows PC. Neither of the computers will be connected to the internet in general.
Since I'm not scaling up my system (it'll only ever be 1 Jetson TX2 -> 1 PC) I'd appreciate the easiest possible solution, rather than most technically robust!
Thanks