ParaViewWeb Features
From KitwarePublic
Revision as of 20:20, 28 June 2010 by Sebastien.jourdain (talk | contribs) (Created page with '* Web support ** JavaScript library ** 3 types of renderer *** Full JavaScript using a long polling technic to fetch each image of the 3D scene *** Java Applet using one HTTP soc…')
- Web support
- JavaScript library
- 3 types of renderer
- Full JavaScript using a long polling technic to fetch each image of the 3D scene
- Java Applet using one HTTP socket for upstream interaction which is closed once the interaction is done and a single downstream HTTP socket connection for the image stream.
- Flash component
- Optimization
- CPU usage
- The server skip mouse move event when several are already available on the server in order to only apply a single mouse move for each rendering.
- Bandwidth
- Depending on the client connection, some frame could be skipped while interacting
- The image transfer rely on the JPEG format which provide a good compression/time ratio
- When strong interaction is occurring, the image quality is reduced in order to reduce the time to generate the image and send it to the client.
- While interacting, the rendering is done on an image size of a quarter of the original render view size.
- CPU usage