I’ve got a python script using stylegan generating individual numpy image frames at about ~25fps, currently running in Windows Subsystem for Linux (WSL). I need to get these frames as a stream into TouchDesigner running on the windows host. I was hoping that since both are using a single shared GPU, I could do some kind of texture sharing like Spout but there doesn’t seem to be anything comparable on the linux side.
Ideally, I’d actually be running the python script on the windows side too but I can’t seem to get the CUDA pipeline to compile stylegan on Windows, so I have to keep it in Ubuntu.
I’m either going to have to use a local socket, or possibly run a dedicated linux machine and use a capture card on the windows TD side, unless somebody here has some insight on a way to share the texture directly?
Thanks!