Question about Powerwall rendering based on vtk

I’m wondering what are current practical solutions to use vtk render to support the Powerwall(Powerwall - Wikipedia). Each process will start a vtk rendering window and render specific region of object according to the position of the display.

Thanks,
Zhe

Hello, I think tiled rendering in VTK will help you.

1 Like

Found the paper https://citeseerx.ist.psu.edu/document?repid=rep1&type=pdf&doi=eb4a353205624bfceb9c32ddb8612201e500e891

1 Like

ParaView has this capability builtin see:

...
[Option Group: Tile Display]
  Tile-display specific options 
  
  Options:
    --tdx,--tile-dimensions-x INT
                                Number of displays in the horizontal direction. 
                                
    --tdy,--tile-dimensions-y INT
                                Number of displays in the vertical direction. 
                                
    --tmx,--tile-mullion-x INT  Size of the gap in pixels between displays in the horizontal direction. 
                                
    --tmy,--tile-mullion-y INT  Size of the gap in pixels between displays in the vertical direction

https://www.paraview.org/Wiki/Setting_up_a_ParaView_Server#Using_a_Tiled_Display

Thanks a lot for the information!