openwalnut an open source visualization system
play

OpenWalnut An Open-Source Visualization System Sebastian Eichelbaum - PowerPoint PPT Presentation

OpenWalnut An Open-Source Visualization System Sebastian Eichelbaum 1 Alexander Wiebel 3 Mario Hlawitschka 2 Gerik Scheuermann 1 1 Abteilung fr Bild- und Signalverarbeitung, Institut fr Informatik, Universitt Leipzig, Germany 2


  1. OpenWalnut – An Open-Source Visualization System Sebastian Eichelbaum 1 Alexander Wiebel 3 Mario Hlawitschka 2 Gerik Scheuermann 1 1 Abteilung für Bild- und Signalverarbeitung, Institut für Informatik, Universität Leipzig, Germany 2 Institute for Data Analysis and Visualization (IDAV), and Department of Com- puter Science, University of California, Davis, USA 3 Max-Planck-Institut für Kognitions- und Neurowissenschaften, Leipzig, Ger- many

  2. Outline Yet Another Visualization Tool? 1 What is OpenWalnut 2 3 Software Design 4 Results and Future Work OpenWalnut Sebastian Eichelbaum

  3. Outline Yet Another Visualization Tool? 1 What is OpenWalnut 2 3 Software Design 4 Results and Future Work OpenWalnut Sebastian Eichelbaum

  4. Available Tools • MeVisLab ( ✇✇✇✳♠❡✈✐s❧❛❜✳❞❡ ) • Amira ( ✇✇✇✳❛♠✐r❛✳❝♦♠ ) • ParaView ( ✇✇✇✳♣❛r❛✈✐❡✇✳♦r❣ ) • VISH ( ✈✐s❤✳♦r✐❣♦✳❡t❤③✳❝❤ ) • MedINRIA ( ✇✇✇✲s♦♣✳✐♥r✐❛✳❢r✴❛s❝❧❡♣✐♦s✴s♦❢t✇❛r❡✴▼❡❞■◆❘■❆ ) • Mayavi ( ♠❛②❛✈✐✳s♦✉r❝❡❢♦r❣❡✳♥❡t ) • SCIRun ( ✇✇✇✳s❝✐r✉♥✳♦r❣ ) • Teem ( t❡❡♠✳s♦✉r❝❡❢♦r❣❡✳♥❡t ) OpenWalnut Sebastian Eichelbaum

  5. Context • Collaboration: Neuroscientists & Visualization Researchers • two different requirements to a visualization tool • Neuroscientist = End-User • Visualization Researcher = Developer OpenWalnut Sebastian Eichelbaum

  6. Requirements • Open Source and free • MeVisLab • Amira • ParaView • VISH • MedINRIA • Mayavi • SCIRun • Teem OpenWalnut Sebastian Eichelbaum

  7. Requirements • Open Source and free • General Purpose (w.r.t. • MeVisLab medical visualization) • Amira • ParaView • VISH • MedINRIA • Mayavi • SCIRun • Teem OpenWalnut Sebastian Eichelbaum

  8. Requirements • Open Source and free • General Purpose (w.r.t. • MeVisLab medical visualization) • Amira • All-In-One: Usable tool • ParaView and powerful framework • VISH • MedINRIA • Mayavi • SCIRun • Teem OpenWalnut Sebastian Eichelbaum

  9. Requirements • Open Source and free • General Purpose (w.r.t. • MeVisLab medical visualization) • Amira • All-In-One: Usable tool • ParaView and powerful framework • VISH • Easily extensible • MedINRIA (flexibility) • Mayavi • SCIRun • Teem OpenWalnut Sebastian Eichelbaum

  10. Requirements • Open Source and free • General Purpose (w.r.t. • MeVisLab medical visualization) • Amira • All-In-One: Usable tool • ParaView? and powerful framework • VISH • Easily extensible • MedINRIA (flexibility) • Mayavi • Easy to use (graphical • SCIRun user interface) • Teem OpenWalnut Sebastian Eichelbaum

  11. Requirements • Open Source and free • General Purpose (w.r.t. • MeVisLab medical visualization) • Amira • All-In-One: Usable tool • ParaView and powerful framework • VISH • Easily extensible • MedINRIA (flexibility) • Mayavi • Easy to use (graphical • SCIRun user interface) • Teem • Portable (Linux, Windows and MacOS X) OpenWalnut Sebastian Eichelbaum

  12. Outline Yet Another Visualization Tool? 1 What is OpenWalnut 2 3 Software Design 4 Results and Future Work OpenWalnut Sebastian Eichelbaum

  13. What is OpenWalnut today • Multi-modal visualization tool • Powerful framework • Fast growing amount of algorithms and methods • Actively developed • Heavily used by: • Max Planck Institute for Cognitive- and Brain Sciences • Max Planck Institute for Neurology • Our group for all kinds of medical visualization research • Other international groups began developing for/with OpenWalnut OpenWalnut Sebastian Eichelbaum

  14. How it looks OpenWalnut Sebastian Eichelbaum

  15. How it looks OpenWalnut Sebastian Eichelbaum

  16. How it looks OpenWalnut Sebastian Eichelbaum

  17. How it looks OpenWalnut Sebastian Eichelbaum

  18. How it looks OpenWalnut Sebastian Eichelbaum

  19. Developer Details • Written in C++, extensively using Boost • GUI with QT • Graphics engine uses OpenSceneGraph • Programmed with long code life-time and readability in mind • Extensive documentation with Doxygen • Unit-testing (cxxtest) • Strict Code-Style rules with automatic checking (cpplint) OpenWalnut Sebastian Eichelbaum

  20. External Lib Integration • CUDA integration • Teem • ITK • Ossim • FSL • ... OpenWalnut Sebastian Eichelbaum

  21. Outline Yet Another Visualization Tool? 1 What is OpenWalnut 2 3 Software Design 4 Results and Future Work OpenWalnut Sebastian Eichelbaum

  22. Design Goals • Easy-to-use GUI • Responsiveness • Interactivity • Flexibility • Extensibility • Only portable external libraries OpenWalnut Sebastian Eichelbaum

  23. Overview OpenWalnut Sebastian Eichelbaum

  24. The Module • Own Thread • Data In- and Output only through connectors • Communication with User/GUI by properties • Graphics Output using scenegraph • No knowledge about other modules, GUI or loaded data • Can be a container for other modules • Push mechanism OpenWalnut Sebastian Eichelbaum

  25. Connectors • Strictly typed by the kind of data transferred • Automatic connection management • GUI can provide list of compatible modules for an given connector to user • Module get informed, or woke up if new data arrives on connector • Automatic change propagation along module graph • Abstract implementation allows many kinds of connectors (streaming, bidirectional, ...) OpenWalnut Sebastian Eichelbaum

  26. Properties • Strictly typed (Bool, Floating Point Values, Integers, Strings, Filenames, Vectors, Matrices, ...) • Possible to define value-constraints • Ensures always valid values • Grouping of properties • GUI implements widgets for handling them • According to type • Constraints • Grouping • Propagation of changes OpenWalnut Sebastian Eichelbaum

  27. Container • Modules can be module container • Forwarding of properties and connectors from or to the internal module graph • Allows hiding complexity • One module even for complex use cases • Easy to re-use existing functionality OpenWalnut Sebastian Eichelbaum

  28. Overview II OpenWalnut Sebastian Eichelbaum

  29. Outline Yet Another Visualization Tool? 1 What is OpenWalnut 2 3 Software Design 4 Results and Future Work OpenWalnut Sebastian Eichelbaum

  30. Results • Combines best out of two worlds • Flexible and extensible framework • Easy-to-use and interactive tool • Strict separation of GUI and framework • Exchangeable GUI and adaptable GUI • Interactive and Responsible • Portable OpenWalnut Sebastian Eichelbaum

  31. Future Work • Integration of scripting features (arbitrary language via SWIG) • Integration of OpenCL • More features from Teem • Several GUI’s for several purpose or one flexible GUI • More file types support OpenWalnut Sebastian Eichelbaum

  32. Interested? • Website: ✇✇✇✳♦♣❡♥✇❛❧♥✉t✳♦r❣ • Videos: ✇✇✇✳②♦✉t✉❜❡✳❝♦♠✴✉s❡r✴❖♣❡♥❲❛❧♥✉t❖r❣ OpenWalnut Sebastian Eichelbaum

  33. Demo • Demo OpenWalnut Sebastian Eichelbaum

  34. Thank You for Listening Questions? OpenWalnut Sebastian Eichelbaum

Download Presentation
Download Policy: The content available on the website is offered to you 'AS IS' for your personal information and use only. It cannot be commercialized, licensed, or distributed on other websites without prior consent from the author. To download a presentation, simply click this link. If you encounter any difficulties during the download process, it's possible that the publisher has removed the file from their server.

Recommend


More recommend