Virtual World

Total Page:16

File Type:pdf, Size:1020Kb

Virtual World PROGRAMMING Coin 3D Interactive 3D Worlds with Coin and Qt Virtual World Qt and Coin, an Open Inventor clone, design particularly simpli- fies programming in make the programming of interactive C++. Open Inventor itself uses OpenGL to 3D worlds a lot easier than OpenGL render graphics and thus inherits its supe- ever has. Speed of image rendering rior quality and speed. is not always the critical requirement. The toolkit is far more than just a library Quick and easy to follow program- that provides classes for creating 3D graphics. Open ming may produce better results. Inventor allows you to describe and store 3D scenes in BY STEPHAN SIEMEN so-called scene graphs, for exam- ple. The file format developed for this purpose was used as a template for VRML (Virtual Reality Modelling Language) in 1994. Open Inventor also or most people OpenGL, immedi- allows interaction with the scene. The ately spring to mind when it comes scene graphs can be used to identify the Fto programming 3D worlds. Often objects and thus define appropriate Open Inventor by SGI or the compatible reactions. Coin (see “Open Inventor and Coin”) are Unfortunately, Coin and SoQt are not The command binds the Coin and SoQt a better choice: OpenGL may render included with every Linux distribution libraries and uses the “-I$QTDIR/ graphics quickly, but it does involve (see the “Installation” insert). Both include” option to specify the location of complex and time-consuming program- packages contain exhaustive documen- the Qt header files. The results are ming. OpenGL’s structure and tation. shown in Figure 2. commands are closely oriented on graphics hardware. Compared to Open 3D Graphics with a GUI Discovering and Exploring Inventor, OpenGL is on the same level as The biggest difference between program- Virtual Worlds Assembler. ming with Open Inventor and Coin is the The “SoQtExaminerViewer” class (line The object oriented Open Inventor GUI integration. The following examples 31) provides a variety of functions that Toolkit was developed in 1991 by the use SoQt to interface with the Qt library, allow you to view various sections of the same SGI programmers that produced Motif variants are available from [7]. scene. The graphic follows mouse move- OpenGL. Open Inventor maps the func- With the exception of the SoQt compo- ments if you hold down the left mouse tionality of OpenGL to objects. The nents, all of these examples also run on button. The viewer provides alternative SGI’s Open Source Variant of Open views of the scene via the wheels and Coin Inventor; thus the names Coin and Open buttons on the window borders. Manufacturer: Systems in Motion Inventor are interchangeable in the fol- The three wheels are particularly inter- lowing sections. esting: two of them are in the bottom left License: LGPL (GPL for Version 2.0 planned) As befits a programming tutorial, our corner, and another is located on the Stable Version: Coin 1.0.3,SoQt 1.0.1 first example will be a Hello World pro- lower right. The right wheel, or dolly, Coin Professional: Commercial license (per gram. It initializes a viewer and displays influences the distance between the user developer and year 2000 US dollars),suit- a three dimensional text. The user can and the scene (zoom effect). The two able for proprietary projects view the text from any arbitrary position. wheels on the left rotate the scene about Multi platform support: Coin runs on Linux, The code is shown in Listing 1 and can its x or y axis. other Unix type systems and Windows; you be downloaded from [7]. The following need a C++ compiler and an OpenGL library command compiles the program: Discovery Tools GUI Bindings: Currently supports Qt,Gtk+, A total of seven buttons are located Motif and Windows; Coin can be used with- g++ HelloSoQt.cpp -o HelloSoQt U above the dolly wheel on the right win- out these bindings -lCoin -lSoQt -I$QTDIR/include dow margin: 72 March 2003 www.linux-magazine.com Coin 3D PROGRAMMING Application Motif SoQt SoXt Coin - Open Qt Inventor Qt-GL OpenGL Operating System Hardware Figure 1:The Coin library mediates between the application and OpenGL. Figure 2:The sample Hello SoQt program is shown in the viewer.The user SoQt is used to bind the Qt GUI toolkit while SoXt is an alternative for Motif can alter the viewing position • Arrow: Edit mode mode is automatically enabled on objects in a scene. The elements of the • Hand: Interactive mode launching the viewer and allows the user scene graph are nodes, which contain • House: Reset camera position to to modify the camera position and angle various functions. Each of these nodes default as required using the GUI wheels and the describes part of the image scene. •Blue House: Set a camera position mouse. Additional settings are available When calculating and rendering a (viewer angle) as the new default posi- in the pop-up menu (right click). scene, Open Inventor works its way tion methodically from the root to the leaves •Eye: View the whole scene The Scene Graph: Managing (the lowest nodes) of the scene graph, • Lamp: Set the focus for the zoomer 3D Objects left to right and top down. (dolly) Open Inventor uses scene graphs for the Special nodes are used to permit addi- •Box: Toggles various transformations. efficient management of 3D scenes (3D tional modifications, such as All of these interactions move the cam- worlds). The scene graph has a tree transformations and rotation. These era and not the scene itself. Interactive structure whose roots allow access to the modifications affect any subordinate Listing 1:“HelloSoQt.cpp” 01 // SoQt header files 24 02 #include <Inventor/Qt/SoQt.h> 25 // Create a text 03 #include <Inventor/Qt/viewers/SoQtExaminerViewer.h> 26 SoText3 *text3D = new SoText3(); 04 27 text3D->string.setValue("Hello SoQt"); 05 // Coin header files 28 root->addChild(text3D); 06 #include <Inventor/nodes/SoBaseColor.h> 29 07 #include <Inventor/nodes/SoText3.h> 30 // Create a viewer 08 #include <Inventor/nodes/SoSeparator.h> 31 SoQtExaminerViewer *b = new 09 SoQtExaminerViewer(window); 10 int main(int argc, char **argv) 32 b->setSceneGraph(root); 11 { 33 b->show(); 12 // Initialize SoQt library. 34 13 // The return value points to a Qt window 35 // Start the window 14 QWidget *window = SoQt::init("test"); 36 SoQt::show(window); 15 37 // Loop until exit. 16 // Create a "scene graph" 38 SoQt::mainLoop(); 17 SoSeparator *root = new SoSeparator; 39 18 root->ref(); 40 // Delete viewer and reference for scene 19 41 delete b; 20 // Set the RGB color. Yellow in this case 42 root->unref(); 21 SoBaseColor *color = new SoBaseColor; 43 22 color->rgb = SbColor(1, 1, 0); 44 return 0; 23 root->addChild(color); 45 } www.linux-magazine.com March 2003 73 PROGRAMMING Coin 3D available as PDF documents under [3] chair (enter the document name you require in the search box) In the case of Coin and its extensions seat front legs back legs back (such as SoQt) the documentation is included in the source code. You can use right right left left Doxygen to generate a HTML overview. seat color seat surface displacement 5rot back color se ation at back Inserting a New Node The following example inserts a new displacement displacement 2 displacement 3 displacement 4 node into a scene graph: leg leg 2 SoCone *cone = new SoCone; hcone->height.setValue(4); cone->parts.setValue("SIDES"); leg color post post 2 root->addChild(cone) Transformation Separator Appearance/Design Geometry This creates an object of the desired Figure 3:The scene graph divides the chair into its components:seat, front and hind legs as well as lean class (“SoCone” in this case) and defines angle.The left and right legs differ only by their position values for some fields. In our example nodes. At this point a similarity to the active operations or describe various Open Inventor and Coin OpenGL status machine becomes appar- transformations. In 1996 SGI handed over the development ent. A property, for example the color of of Open Inventor as of version 2.1 to TGS [2]. a 3D object (class “SoBaseColor”) Nodes: Shapes, Colors, This company develops and distributes the remains active until a new value is Materials and Light latest version (currently 3.1) commercially.In assigned to the property. Each node is described in a class. The August 2000 SGI decided to publish its own The programmer can organize the name of a node class starts with “So”, as Open Source Open Inventor version (2.1) for objects in the scene graph to manipulate in “SoMaterial” or “SoCone”. The “So” Linux [1]. the appearance and behavior of the gen- prefix is omitted when describing a The Norwegians,Systems in Motion [4], erated scene. scene in a file. Node names are VRML offer an implementation of their own,called The order of the effects is important. like in this case. Coin [5],for Windows,Linux and other Unix systems. Coin is currently available Replacing a rotation with a translation Each class comprises of fields that under the LGPL license (version 1.x), will lead to different generated results. characterize the properties of the node. although version 2.0 is due to be released Open Inventor offers a variety of node The SGI documentation details the fields under GPL. types that can define surfaces, describe available in each node type: the “Open materials or adjust the camera lighting. Inventor Nodes Quick Reference” and More Dynamism with Coin Other nodes provide interfaces for inter- “Open Inventor C++ Reference” are Coin was chosen for this article – its devel- opment promises more dynamism than Table 1 Shape Classes the SGI variant.
Recommended publications
  • Open Inventor Toolkit ACADEMIC PROGRAM FAQ Updated June 2018
    Open Inventor Toolkit ACADEMIC PROGRAM FAQ Updated June 2018 • How can my organization qualify for this program ? • What support will my organization get under this program ? • How can I make an application available to collaborators • Can I use Open Inventor Toolkit in an open source project ? • What can I do with Open Inventor Toolkit under this program ? • What are some applications of Open Inventor Toolkit ? • What's the value of using Open Inventor Toolkit ? • What is Thermo Fisher expecting from my organization in exchange for the ability to use Open Inventor Toolkit free of charge ? • How does Open Inventor Toolkit relate to visualization applications ? • Can I use Open Inventor Toolkit to extend visualization applications ? • What languages, platforms and compilers are supported by Open Inventor Toolkit ? • What are some key features of Open Inventor Toolkit ? How can my organization qualify for this program ? Qualified academic and non-commercial organizations can apply for the Open Inventor Toolkit Academic Program. Through this program, individuals in your organization can be granted Open Inventor Toolkit development and runtime licenses, at no charge, for non-commercial use. Licenses provided under the Open Inventor Toolkit Academic Program allow you to both create and distribute software applications based on Open Inventor Toolkit. However, your application must be distributed free-of-charge for educational or research purposes. Your application must not generate commercial revenue nor be deployed by a corporation for in-house use nor be used in any other commercial manner Contact your account manager and we will provide you with more information on the details to qualify for this program.
    [Show full text]
  • Top-Down Archaeology with a Geometric Language
    483 Computer-Aided Design and Applications © 2008 CAD Solutions, LLC http://www.cadanda.com Top-Down Archaeology with a Geometric Language Dario Lucia*, Francesco Martire*, Alberto Paoluzzi* and Giorgio Scorzelli* *Università degli Studi “Roma Tre”, {lucia, martire, paoluzzi, scorzell}@dia.uniroma3.it Fig. 1: (a) 2D map of the Palatino hill in Rome; (b) the 3D PLaSM reconstruction of the emperor’s palace (Domus Flavia, Domus Augustana and Hippodrome of Domitian). ABSTRACT In this paper we discuss a fast reconstruction of an archaeological site consisting of many different and connected parts. In particular, we discuss the geometric reconstruction of the Domus Flavia and the Domus Augustana, both built by Emperor Domitian on the Palatine hill in Rome, including the adjacent Hippodromus. The Domus Flavia was the official part of the palace, while the Domus Augustana was the emperor’s luxurious private residence. They are the most impressive ruins remaining today on the Palatine. The aim of this paper is to introduce the reader to the power of generative semantics, and to show how fast and easy is the generation of complex VR models if using a generative language. For this purpose, we capitalize on a novel parallel framework for high- performance solid and geometric modeling, that (a) compiles the generating expressions of the model into a dataflow network of concurrent threads, and (b) splits the model into fragments to be distributed to computational nodes and generated independently. We trust that both the language and its kernel are suitable for Cell-BE (Broadband Engine) implementation, that someone believes the reference architecture for advanced modeling, imaging and simulation of next years.
    [Show full text]
  • Open Inventor® 3D Graphics Toolkit for Industrial-Strength Application Development
    DataSheet Open Inventor® 3D Graphics Toolkit for Industrial-Strength Application Development • Speed up your application design, development and maintenance cycles • Increase your performance with advanced 3D visualization and programming • Protect your investment by abstracting low-level, underlying graphics technology • Rely on advanced support of leading open standards Open Inventor® is an object-oriented, cross-platform 3D Open Inventor® delivers enhanced productivity, performance, graphics toolkit for the development of industrial-strength, flexibility and reliability for development of your most demanding interactive, 3D graphics applications using C++, .NET or Java. applications that require robust and evolutionary technologies to meet the highest challenges in 3D visualization. Open Inventor® provides the power and functionality of OpenGL® at an object-oriented level. The easy-to-use API, extensible architecture, and large set of advanced components provide developers with a high-level platform for rapid prototyping and development of high-end, advanced 3D graphics applications. Core Features Object-Oriented 3D API Open Inventor® offers a comprehensive object-oriented set (more than 1300 ready- to-use classes) integrated in a user-friendly framework for rapid development. The scene graph paradigm provides ready-to-use graphics programming patterns, and the object-oriented design encourages extensibility and customization to satisfy specific requirements. Open Inventor® is the most widely used scene graph API in the developer community. Optimized 3D Rendering Open Inventor® has been tuned for improved performance by utilizing the latest relevant OpenGL® features and extensions, automatically taking care of OpenGL® optimization techniques to provide a much higher-level programming interface. Advanced Support of OpenGL® Shaders OpenGL® shader rendering techniques can be applied to any Open Inventor® shape to further enhance the 3D visual experience by using special effects.
    [Show full text]
  • Algebraic Methods for Geometric Modeling Julien Wintz
    Algebraic Methods for Geometric Modeling Julien Wintz To cite this version: Julien Wintz. Algebraic Methods for Geometric Modeling. Mathematics [math]. Université Nice Sophia Antipolis, 2008. English. tel-00347162 HAL Id: tel-00347162 https://tel.archives-ouvertes.fr/tel-00347162 Submitted on 14 Dec 2008 HAL is a multi-disciplinary open access L’archive ouverte pluridisciplinaire HAL, est archive for the deposit and dissemination of sci- destinée au dépôt et à la diffusion de documents entific research documents, whether they are pub- scientifiques de niveau recherche, publiés ou non, lished or not. The documents may come from émanant des établissements d’enseignement et de teaching and research institutions in France or recherche français ou étrangers, des laboratoires abroad, or from public or private research centers. publics ou privés. Universit´ede Nice Sophia-Antipolis Ecole´ Doctorale STIC THESE` Pr´esent´ee pour obtenir le titre de : Docteur en Sciences de l’Universit´ede Nice Sophia-Antipolis Sp´ecialit´e: Informatique par Julien Wintz Algebraic Methods for Geometric Modeling Soutenue publiquement `al’INRIA le 5 Mai 2008 devant le jury compos´ede : Pr´esident : Andr´e Galligo Universit´ede Nice, France Rapporteurs : Gershon Elber Technion, Israel Tor Dokken Sintef, Norway Examinateurs : Pascal Schreck Universit´eLouis Pasteur, France Christian Arber Missler, France Directeur : Bernard Mourrain Inria Sophia-Antipolis, France Algebraic methods for geometric modeling Julien Wintz Abstract The two fields of algebraic geometry and algorithmic geometry, though closely related, are traditionally represented by almost disjoint communi- ties. Both fields deal with curves and surfaces but objects are represented in different ways. While algebraic geometry defines objects by the mean of equations, algorithmic geometry use to work with linear models.
    [Show full text]
  • Openscenegraph 3.0 Beginner's Guide
    OpenSceneGraph 3.0 Beginner's Guide Create high-performance virtual reality applications with OpenSceneGraph, one of the best 3D graphics engines Rui Wang Xuelei Qian BIRMINGHAM - MUMBAI OpenSceneGraph 3.0 Beginner's Guide Copyright © 2010 Packt Publishing All rights reserved. No part of this book may be reproduced, stored in a retrieval system, or transmitted in any form or by any means, without the prior written permission of the publisher, except in the case of brief quotations embedded in critical articles or reviews. Every effort has been made in the preparation of this book to ensure the accuracy of the information presented. However, the information contained in this book is sold without warranty, either express or implied. Neither the authors, nor Packt Publishing and its dealers and distributors will be held liable for any damages caused or alleged to be caused directly or indirectly by this book. Packt Publishing has endeavored to provide trademark information about all of the companies and products mentioned in this book by the appropriate use of capitals. However, Packt Publishing cannot guarantee the accuracy of this information. First published: December 2010 Production Reference: 1081210 Published by Packt Publishing Ltd. 32 Lincoln Road Olton Birmingham, B27 6PA, UK. ISBN 978-1-849512-82-4 www.packtpub.com Cover Image by Ed Maclean ([email protected]) Credits Authors Editorial Team Leader Rui Wang Akshara Aware Xuelei Qian Project Team Leader Reviewers Lata Basantani Jean-Sébastien Guay Project Coordinator Cedric Pinson
    [Show full text]
  • Getting Started First Steps with Mevislab
    Getting Started First Steps with MeVisLab 1 Getting Started Getting Started Published April 2009 Copyright © MeVis Medical Solutions, 2003-2009 2 Table of Contents 1. Before We Start ..................................................................................................................... 1 1.1. Welcome to MeVisLab ................................................................................................. 1 1.2. Coverage of the Document .......................................................................................... 1 1.3. Intended Audience ....................................................................................................... 1 1.4. Requirements .............................................................................................................. 2 1.5. Conventions Used in This Document ............................................................................ 2 1.5.1. Activities ........................................................................................................... 2 1.5.2. Formatting ........................................................................................................ 2 1.6. How to Read This Document ....................................................................................... 2 1.7. Related MeVisLab Documents ..................................................................................... 3 1.8. Glossary (abbreviated) ................................................................................................. 4 2. The Nuts
    [Show full text]
  • Perry L Miller IV 724-309-7201 [email protected]
    Perry L Miller IV 724-309-7201 [email protected] Areas of Interest Computer Graphics as it applies to Computer Aided Design (CAD), Engineering (CAE), Scientific Visualization, and Geographic Information Systems (GIS); Browser-based 3D (WebGL); Software Engineering principles and best practices; Non-Uniform Rational B-Splines (NURBS). Education Iowa State University of Science and Technology, Ames, Iowa. Doctor of Philosophy, Mechanical Engineering, December 2000. Thesis: Blade geometry description using B-Splines and general surfaces of revolution. Advisor: Dr. James H. Oliver Iowa State University of Science and Technology, Ames, Iowa. Master of Science, Mechanical Engineering, August 1995. Thesis: Interactive turbomachinery blade modeler. Advisor: Dr. James H. Oliver University of Pittsburgh, Pittsburgh, Pennsylvania Bachelor of Science, Mechanical Engineering, December 1992. Experience ESI Group, Farmington Hills, MI. Senior Software Engineering. Apr 2015 – Present. • Front-end developer specializing in 3D visualization of Computer Aided Design (CAD) and Computer Aided Engineering (CAE) data in the browser using WebGL. • Furthering the development of Ciespace's WebGL-based 3D viewer to enable integration into ESI's products that run in the browser or on the desktop using Electron (e.g., ESI-Player). • Daily use of WebGL, Node.js, Webpack, React, as well as familiarity with (and occasional use of) React-Native and Redux. • Often use Node.js or C++ to make supporting command-line utilities, most of which convert 3D CAD formats into the viewer's JSON-based model file. Ciespace Corporation, Pittsburgh, PA. Senior Software Engineer. Oct 2011 – Apr 2015. • Developed WebGL-based 3D viewer for Computer Aided Engineering (CAE) product that runs in modern browsers.
    [Show full text]
  • Visual Medicine: Part
    VisualVisual Medicine:Medicine: PartPart oneone -- FoundationsFoundations ofof MedicalMedical ImagingImaging Visual Programming for Prototyping of Medical Imaging Applications Florian Link MeVis Research Bremen, Germany [email protected] Overview • Introduction to MeVisLab • Visual Programming • Examples • VTK / ITK Integration • MeVisLab SDK Features IEEE Visualization 2006 Visual Programming 2/37 MeVisLab MeVisLab is: • MeVis Research and Development Platform • Medical Image Processing and Visualization • Rapid Application Prototyping IEEE Visualization 2006 Visual Programming 3/37 History 1993: ILAB1 – 1997: ILAB2 & 3 2000: ILAB4 2002: MeVisLab 2004: www.mevislab.de IEEE Visualization 2006 Visual Programming 4/37 Licensing • MeVisLab Basic is free for non-commercial usage • Many algorithms presented in this tutorial can be explored with MeVisLab Basic • Full MeVisLab SDK is available at academic and commercial rates • 3 month evaluation version available IEEE Visualization 2006 Visual Programming 5/37 Other Visualization Platforms • Amira • Analyze • AVS Express • IBM Data Explorer/OpenDX • Khoros/VisQuest • LONI • SCIRun • … IEEE Visualization 2006 Visual Programming 6/37 Visual Programming New image processing algorithms are implemented as C++-modules C++-Module IEEE Visualization 2006 Visual Programming 7/37 Visual Programming Individual image processing modules Output are combined to networks using a graphical user interface Input IEEE Visualization 2006 Visual Programming 8/37 Visual Programming Each image processing module Output
    [Show full text]
  • Open Inventor Medical Edition
    PROVIDE ADVANCED IMAGE ANALYSIS CAPABILITIES DEVELOP ONCE, ACCESS EVERYWHERE IMPLEMENT IMAGE COMPUTING WORKFLOWS DELIVER UNRIVALED 2D/3D VISUALIZATION Open Inventor Medical Edition 3D graphics and image processing software for application developers Thermo Scientific™ Open Inventor™ Medical Edition is a software development toolkit (SDK) that provides state-of-the-art 3D graphics, image processing and visualization features for medical, dental, and research applications. Open Inventor supports developers using C++, .NET or Java and applications can be deployed in both desktop and cloud environments. Its easy-to-use API, extensible architecture, and large set of advanced built-in components provide developers with a high-level platform for integrating visualization capabilities into software applications in a simple and consistent way. Power your software development with Open Inventor Go to market faster About Open Inventor Medical Edition Medical Edition • Object-oriented API and components Open Inventor Medical Edition provides the tools you need to Open Inventor Medical Edition is a cross-platform software • Develop in C++, .NET or Java build visualization and image processing applications with state- development toolkit (SDK) for implementing commercial of-the-art features and performance. and research applications with 2D and 3D image computing • Advanced debugging and productivity tools Image and volume data workflows in medical and dental markets. Based on the widely • Easy integration with existing applications Open Inventor can load images, volumes or stacks of images used Open Inventor 3D toolkit, this edition provides high-level from DICOM and other standard formats. Data can be rendered image visualization, processing and analysis through an object- Deliver state-of-the-art 3D using slices, multiplanar reconstruction (MPR), curved MPR, slab oriented API.
    [Show full text]
  • Implicit Surfaces for Interactive Animated Characters by Kenneth Bradley Russell
    IMPS: Implicit Surfaces for Interactive Animated Characters by Kenneth Bradley Russell B.S., Computer Science and Electrical Engineering Massachusetts Institute of Technology, Cambridge, MA June 1997 Submitted to the Program in Media Arts and Sciences, School of Architecture and Planning, in partial fulfillment of the requirements for the degree of MASTER OF SCIENCE IN MEDIA ARTS AND SCIENCES at the Massachusetts Institute of Technology June 1999 @ Massachusetts Institute of Technology, 1999 All Rights Reserved Signature of Author Program in Media Arts and Sciences May 7, 1999 A C) Certified by Bruce M. Blumberg Asahi Broadcasting Corporation Assistant Professor of Media Arts and Sciences MIT Media Laboratory Thesis Supervisor Accepted by V 0 Stephen A. Benton Chairperson Departmental Committee on Graduate Students, Program in Media Arts and Sciences MIT Media Laboratory OF TECHNOLOGY JUN 141999 ROTCH LIBRARIES IMPS: Implicit Surfaces for Interactive Animated Characters by Kenneth Bradley Russell Submitted to the Program in Media Arts and Sciences, School of Architecture and Planning on May 7, 1999 in partial fulfillment of the requirements for the degree of Master of Science in Media Arts and Sciences Abstract Implicit surface modeling in computer graphics is a powerful technique for representing smooth and organic shapes. Skeletal elements of an implicit surface blend to create a smooth, seamless skin which exhibits desired properties for animation such as squash and stretch. Because of their high computational cost to render, implicit surfaces have not been used extensively in the real-time graphics domain. This thesis discusses the problems and some solutions in the application of implicit surfaces to the domain of interactive character animation.
    [Show full text]
  • Open Inventor 3D Software Development Toolkit for Medical And
    Open Inventor for Medical and Life Sciences High-performance 3D graphics development toolkit Open Inventor® is an object-oriented 3D graphics software toolkit for the development of professional interactive applications using C++, .NET or Java. Its easy-to-use API, extensible architecture, and large set of advanced components provide developers with a high-level platform for rapid prototyping and development of 3D graphics software applications for medical and life sciences. POWER YOUR SOFTWARE DEVELOPMENT WITH OPEN INVENTOR A wide range of applications. State-of-the-art volume Go to market faster visualization makes Open Inventor a preferred solution for · Rapid prototyping and development all types of 3D imaging, including X-ray, CT, MRI, · Object-oriented API and components ultrasound, optical and electron microscopy. Fast, efficient · Multi-platforms and multi-languages support rendering of all types of geometry also makes it effective · Advanced debugging and productivity tools for many other applications, including image processing · Easy deployment and easy integration with existing and analysis, PACS, therapy and surgery planning, implant applications design, forensic medicine, education, training, and even Deliver state-of-the-art 3D molecular modeling. · State-of-the-art 3D engine A wide range of developers. Open Inventor is the solution · Powerful scene graph architecture of choice for commercial and non-commercial developers. · Cutting-edge volume rendering Whether you are an independent software vendor or a hardware vendor, Open Inventor gets your software to · High image quality market faster, with superior images and performance. · Advanced support of meshes and grids Researchers find Open Inventor easy to use, easy to extend · Automatically optimized rendering and capable of publication quality hardcopy.
    [Show full text]
  • Open Inventor Medical Edition High-Performance 3D Software Development Tools
    Open Inventor Medical Edition High-performance 3D software development tools Open Inventor® Medical Edition is an object-oriented 2D and 3D software development toolkit (SDK) for developing professional interactive applications using C++, .NET or Java, for cloud, desktop and mobile environments. Its easy- to-use API, extensible architecture, and large set of advanced built-in components provide developers with a high-level platform for integrating powerful 2D/3D visualization and analysis capabilities into software applications in a simple and consistent way. Power your software development with Open Inventor Medical Edition Open Inventor® Medical Edition is a cross-platform software Go to market faster development toolkit (SDK) for implementing applications · Object-oriented API and components with 2D and 3D medical image computing workflows. Based on the widely used Open Inventor 3D toolkit, this edition · Develop in C++, .NET or Java provides high-level image visualization, processing and · Advanced debugging and productivity tools analysis through an object-oriented API. · Easy integration with existing applications Whether you are an independent software vendor or a hardware vendor, Open Inventor Medical Edition gets your Deliver state-of-the-art 3D software to market faster, with superior images and · High performance and high image quality performance. Partnering with the visualization experts at FEI means that your in-house developers can focus on their · State-of-the-art volume rendering domain specific expertise. · Advanced image processing and analysis 3D rendering is now practical for any application, whether it’s · Advanced support of meshes and grids a new development or an upgrade, and Open Inventor makes it easy to add this extra dimension.
    [Show full text]