Hello,
I have a Python TCP server that streams webcam video frames as JPEG over the network. Now I want to build a LabVIEW client that can:
Connect to the Python server
Read the first 4 bytes (frame length)
Receive the JPEG frame data
Display the image on the LabVIEW Front Panel
Note: I do not have NI Vision Toolkit, so I need a solution using .NET (MemoryStream + Image.FromStream) or any other method to display the image.
Can someone share a simple example VI or block diagram to achieve this?
Thanks 🙏tcp_video_server.pywebcam_tcp_client.py