Oh wait, never mind . . .
Real-time, in-camera background compositing in The Mandalorian
121–126 of 126 posts
Re: Real-time, in-camera background compositing in The Mandalorian
#122Earlier quoted context omitted.
I don’t fully get this. They could just employ different computers to render different parts of their cave. It seems more like a cost savings thing than a technical limitation. And I’m not sure why you’d skimp on a few PC’s if you’re already building a humongous led wall, so maybe there’s something I’m missing.
“They could just...” Pretty much every time I’ve thought this, it’s turned out I was underestimating the difficulty of doing “just” that. If it were just that easy, wouldn’t they have done that already?
That isn’t always the case, but asking the question is better than the alternative.
Re: Real-time, in-camera background compositing in The Mandalorian
#123Earlier quoted context omitted.
I don’t fully get this. They could just employ different computers to render different parts of their cave. It seems more like a cost savings thing than a technical limitation. And I’m not sure why you’d skimp on a few PC’s if you’re already building a humongous led wall, so maybe there’s something I’m missing.
The part you are missing is the insane complexity involved in keeping perfect frame sync with a low latency across GPUs and machines, especialliy when some final compositing of partial outputs is involved. The stuff sounds simple on paper and it looks like you can just go buy the tech, unpack it and switch it on. The reality is nothing like that. The off the shelf tech is fiddly and barely stable because it is always…
Obviously that tech is not simply unpackable, because they’re on the cutting edge. But that’s also why you could expect some customization.
Re: Real-time, in-camera background compositing in The Mandalorian
#124Earlier quoted context omitted.
I don’t fully get this. They could just employ different computers to render different parts of their cave. It seems more like a cost savings thing than a technical limitation. And I’m not sure why you’d skimp on a few PC’s if you’re already building a humongous led wall, so maybe there’s something I’m missing.
I worked in a somewhat similar project in 2015, though not as complex as this, to build background videos for DotParty, using UE4 for panoramas and then stitching them. One of the hugest issues we found was that, because of this being a game engine, a lot of things are not deterministic, so if we used multiple cards or computers, particles and other environmental effects would not be in sync, and the stitches were gl…
For the non-visible screens it wouldn’t matter that much, but they’d still end up with the moving fulcrum for the main engine.
Re: Real-time, in-camera background compositing in The Mandalorian
#125Earlier quoted context omitted.
I worked in a somewhat similar project in 2015, though not as complex as this, to build background videos for DotParty, using UE4 for panoramas and then stitching them. One of the hugest issues we found was that, because of this being a game engine, a lot of things are not deterministic, so if we used multiple cards or computers, particles and other environmental effects would not be in sync, and the stitches were gl…
Yeah, that’s a good point. And taking out the particles and doing those separately is probably near impossible. For the non-visible screens it wouldn’t matter that much, but they’d still end up with the moving fulcrum for the main engine.
Re: Real-time, in-camera background compositing in The Mandalorian
#126Earlier quoted context omitted.
The part you are missing is the insane complexity involved in keeping perfect frame sync with a low latency across GPUs and machines, especialliy when some final compositing of partial outputs is involved. The stuff sounds simple on paper and it looks like you can just go buy the tech, unpack it and switch it on. The reality is nothing like that. The off the shelf tech is fiddly and barely stable because it is always…
If you have a 12 frame delay regardless you have an awful lot of time to get your clocks in sync. Obviously that tech is not simply unpackable, because they’re on the cutting edge. But that’s also why you could expect some customization.
If your parallel renderer divides the image along a grid that does not correspond to display boundaries, you need to gather and composite the partial framebuffers after rendering them. This means that you're now sending frames across the network amd you need to take care that you aren't compositing frames from different timesteps, for example, because the the part of the rendered framebuffer that goes to compositor/display node A arrived in time, but the part going to compositor/display node B somehow didn't.