Hire Plus Server in WPF application #814
-
Hello, |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
My recommendation would be to learn from an existing application. This is the entry point for our most commonly used program, and provides a good overview of the classes necessary to collect data: This line: is where you would put code to query the data collector for the latest frames, and then use them in your program as you see fit (probably extracting the video memory, and copying it to your WPF UI component). |
Beta Was this translation helpful? Give feedback.
-
Another option would be that use PlusServer as is and just implement receiving data from a socket using OpenIGTLink protocol. You can either use the OpenIGTLink library in your application or (since OpenIGTLink is a very simple protocol) you can implement message receiving and unpacking from scratch. |
Beta Was this translation helpful? Give feedback.
-
Thanks for your answers. I am going to implement and test both solutions. :) |
Beta Was this translation helpful? Give feedback.
Thanks for your answers. I am going to implement and test both solutions. :)