<div dir="ltr">Hello,<br>we aim at implementing an image processing application that interpretes the rendered images from a remote parallel visualization of large datasets.<br><br>For this purpose we need to connect to a running pvserver, send a few commands to set up the visualization pipeline, and receive a sequence of rendered images. If possible, we would use the core classes without a necessity to include the Qt framework.<br><br>I am currently stuck with the first step, how to connect to a remote pvserver.<br>My first attempt failed:<br>...<br>int main(){<br>  vtkSMSessionClient *session=vtkSMSessionClient::New();<br>  session->Connect("cs://<remote.host>");<br>}<br><br>These lines segfault as follows:<br>  Warning: vtkPVServerInformation (0x239ff50): ProcessModule is not available.<br>  Warning: vtkPVSessionBase (0x239deb0): No vtkMultiProcessController for Session. The session won't work correctly.<br>  Segmentation fault (core dumped)<br><br>May I ask, if somebody can send me a working C++ code snippet or explain in words, how to<br>1. connect a client to a remote pvserver<br>2. let the client create a sphere or any other data source on the server<br>3. receive a rendered image from the server (I might be able to figure this out myself if I have a solution for steps 1. and 2.)<br><br>Thank you<br>Peter<br></div>