Introduction to Visualization: ParaView. Dan Mazur, McGill HPC Aug 20, 2013

Size: px
Start display at page:

Download "Introduction to Visualization: ParaView. Dan Mazur, McGill HPC Aug 20, 2013"

Transcription

1 Introduction to Visualization: ParaView Dan Mazur, McGill HPC Aug 20,

2 Outline What is scientific visualization? ParaView and visualization pipelines data import 1D, 2D, 3D data visualization Isosurfaces and volume rendering Data sets and formats Putting it all together 2

3 Agenda (approximate) 9-10:30 - Introduction to Visualization and Paraview 10:30-10:45 Coffee break 10:45-12:00 Hands-on Activities 12:00-1:00 Lunch Break 1:00-2:30 Hands-on Activities cont. 2:30-2:45 Coffee Break 2:45-4:00 Project Introduction to visualization and ParaView 9:00 C Hands-on o Activities f f e e 11:00 10:00 Lunch 12:00 Hands-on Activities 1:00 C o f f e e 2:00 Project 3:00 3

4 Acknowledgements: Workshop History Based on UofA Vis Workshop Jon Johansson, Chris UofA Original materials and data sets Delivered many times at UofA BCNet/HPCS 2012 in May Westgrid Visualization Roadshow SFU (2), USask, URegina HPCS Brian Corrie Today at McGill 4

5 Are you ready? Ensure that you have: Paraview installed on your laptop paraview.zip - execise files unzip paraview.zip (Linux/Unix) double click (Mac/Windows) PVExercises.pdf - exercise descriptions 5

6 What is Scientific Visualization? Data into knowledge: Visualization presents scientific data to the human visual and cognitive system for analysis and interpretation The goal: extract/communicate knowledge/insight. Our goal: Convert scientific data into visual form Exploration: understand the data Interactively examine the data Looking for aspects of the data that are interesting Communication: communicate the data to peers within the research group to external community (presentations, publications) 6

7 Neo: Do you always look at it encoded? Cypher: You get used to it. All I see is blonde, brunette, red-head... 7

8 8

9 ParaView Paraview provides a full set of tools for manipulating, transforming, processing, rendering and animating data Allows for visualization and analysis methods based on points, lines, areas, volumes, images or geometric primitives in any combination Provides powerful parallel execution and advanced display (3D stereoscopic viewing) 9

10 ParaView Project began in 2000 ParaView is open source ParaView is supported by Kitware Kitware contributes to ParaView development ParaView is built on top of the Visualization Toolkit (VTK) Kitware, Inc. and Los Alamos National Laboratory. VTK came out of GE Research First public release in October 2002: ParaView

11 ParaView Architecture ParaView uses a client-server model The client process is the user interface In stand-alone mode the client does all processing on the local machine it always runs on a workstation (desktop) The server does computation In a single process on a local/remote machine, or In many processes on a cluster 11

12 Paraview Modes Stand-alone mode Client/server mode Computations and user interface are run on same machine Computations are run on a server Parallel mode Server launches an mpi job on a cluster 12

13 Exercise 1: Starting ParaView Linux/Unix: type paraview Windows: Select paraview from start menu Mac: click ParaView in App folder ParaView GUI should start up The server pvserver is run for you 13

14 Optional Exercise: Connect to Guillimin log in ssh Set up port forwarding Start an interactive job on lmgpu msub -q lmgpu -I -l nodes=1:ppn=1,walltime=1:00:00 Wait for job to start Start the paraview server module load paraview pvserver ssh guillimin.clumeq.ca -L 11111:lm-2r02-n79:1111 In local ParaView File > Connect > Add Server localhost:11111 Click Configure > Manual > Save Click Connect This is not necessary for today, the lab workstations have plenty of power for our data sets We will develop Guillimin's remote visualization capabilities as phase II comes online and with user interest 14

15 ParaView Interface Menus Toolbars Pipeline Browser Object Inspector 3D view 15

16 Visualization Pipeline Reader Imports data from a source (e.g. data file) Filter Filter modify and/or manipulate data modify and/or manipulate data Filter Mapper Transform data to geometry (e.g. points, lines, polygons, colours) Renderer Converts geometry into an image (e.g. pixels, vector graphics, polygons, volume rendering) modify and/or manipulate data 16

17 Visualization Pipeline Most visualization packages use a pipeline model (ParaView, VTK, VisIT, Avizo) Pipeline components can be combined in many different ways to create a visualization Developers can add new components to the system to extend the package's functionality ParaView allows python scripts as filters 17

18 Object-Based Rendering Object based model with lighting Arrange the view (camera) Render image from the camera position 18

19 Object Rendering Results in an image as seen from the camera's viewpoint Lights give shading, highlights and can modify color Surfaces nearest the camera occlude those behind 19

20 ParaView Objects ParaView supports many techniques for generating renderable objects from data. For scalar data these include: Points and glyphs Contours and isosurfaces Histograms Two-dimensional and three-dimensional plots For vector data Arrow plots, streamlines, etc 20

21 ParaView Objects Annotations Ribbons, tubes, axes, text Display of data locations, meshes and boundaries Data interactions are also supported: probing (selecting a location in a volume) picking (selecting a location on the surface of an object) arbitrary surface and volume sampling arbitrary cutting/mapping planes 21

22 Importing Data Avoid data conversion! For best results generate your data in a vtk file format STRUCTURED_POINTS STRUCTURED_GRID RECTILINEAR_GRID UNSTRUCTURED_GRID POLYDATA VTK XML Many common scientific data file formats can be opened and visualized 22

23 ParaView Data Formats VTK:.vtk,.pvtk,.vtp,.vtu,.vti,.vts,.vtr,.pvtp,.pvtu,.pvti,.pvts,.pvtr,.vtm,.vtmb,.vthb Paraview:.pvd Self-describing data formats: HDF5, netcdf Ensight:.case,.sos Protein Data Bank:.pdb Xmol Molecule Files:.xyz Gaussian Cube Files:.cube POP Ocean Files:.pop Images:.png,.tif RAW (binary):.raw lots of others, look at: File Open File Files of type: Open Source: Add a custom reader for your own data format 23

24 Pipelines The eye icon controls whether the output of a fileter is visible in the active window Data flows from the data source/reader down through the filters PVServer Data Source Filters Data Flow A program in ParaView is called a visualization pipeline 24

25 Pipelines The highlighted filter can be configured through the Object Inspector The data produced by the filter is described in the Information tab 25

26 Pipelines You can change a filter's behaviour in the Properties tab Click Apply when you want your changes to take effect 26

27 Exercise 2: Pipelines File->Open the sample data set paraview/bumps/bu mps.vtk Change the colors for the data Properties->Edit Select the Rainbow colormap 27

28 28

29 Exercise 2: Pipelines Add dimension to data Use WarpByScalar filter Uses scalar value as Zdimension Scale magnitude of offset Set the scale factor to 5 29

30 Exercise 3: ParaView Windows Reproduce this image: Use objects from the Sources menu Cone Sphere Box Cylinder Use the icons in the upper right of a window to split the view 30

31 ParaView Views ParaView has many types of views Some filters open a view window suitable to the filter's output e.g. histograms 31

32 Exercise 4: 1D data Please do activity 2 from the handout You will recreate the plots seen here 32

33 Exercise 5: 2D data Please do activity 3 from the handout You will recreate the plots seen here 33

34 Exercise 6: Animation ParaView is capable of easily making simple animations Not designed for complex animations Activity: Please do activity 4 from your handout 34

35 Exercise 7: 3D Data 3D regular grid data - e.g. Medical CT scan Slice planes through gridded data Please reconstruct the following image using Slice filters on the jaw_16bit.vti data file: 35

36 Exercise 8: Isosurfaces Use isosurfaces to generate the visualization 3D-Data/jow_8bit.vti Isosurfaces with different colours represent the jaw, spine and skin 36

37 Big Project: Electric Field Let's put together what we've learned to create a visualization project involving: A scalar field A vector field Annotations 37

38 Electric Potential Consider the electric potential due to a dielectric cylinder introduced into a constant electric field,. The parameters used are: 38

39 The Goal: Create this visualization 39

40 Task 1: Create a VTK File In the directory paraview/epot is a file containing the electric potential data in ascii text format Add an appropriate header to create a vtk file (hint: refer to Bumps.vtk) The origin is -50 for each axis The data spacing is 1 with 101 points along each axis There are 1013 points in the volume 40

41 Task 2: Slice the data set Open your.vtk file with ParaView Add a slice filter Origin = 0, 0, (not -50.0) Z Normal 41

42 Task 3: Contour Lines Add a contour filter Delete the default range and click on Add Range From = -1750, To = 1750, Steps = 8 This adds 8 lines Can you make them tubes? 42

43 43

44 Task 4: Compute Electric Field Use the Gradient filter and the Calculator filter to compute the electric field from the electric potential: Use the Gradient filter on the potential In the properties tab of the Calculator set Result Array name to ElectricField Calculate the expression: -EPotentialGradient 44

45 Electric Field Use a slice filter to put a slice in the center of the volume If the input of the slice is a vector field, the magnitude will be displayed 45

46 Magnitude of the Electric Field 46

47 Streamlines Use a StreamTracer filter to the Calculator generating the Electric field Use a line source to seed the streamlines Seed Type: Line Source Point1 = (50,50,0) Point2 = (50,-50,0) Resolution=10 Add tubes to the lines 47

48 Streamlines 48

49 Glyphs The top slice of our goal visualization shows glyphs at some grid points of the electric field Add a slice filter to the Calculator filter (electric field) Origin=(0,0,50) Use a MaskPoints filter to control the points in the slice that will be glyphed Arrows indicating the direction and magnitude of the vector field Set On Ratio to 10, Check the Random box with Randomized ID strides Add a Glyph module with Glyph Type: Arrow Scale Mode: Vector Adjust the arrow size parameters to your liking 49

50 Glyphs 50

51 Final view of the data We have created three visualizations of the data on three different slices We are still lacking context! Add information to help the viewer understand what they are looking at 51

52 Adding Meaning Annotations: titles, labels, explanations Outline: define the volume of space being visualized Axes: orientation, scale Legend: map the colours to a scale Geometry: Add a cylinder to represent the dielectric cylinder 52

53 Annotations 53

54 Adding Meaning Annotations: titles, labels, explanations Use Outline filter on original data, add tubes Axes: orientation, scale Display tab, Show Cube Axes Legend: map the colours to a scale Sources -> Text Outline: define the volume of space being visualized Display tab, Edit Color Map Geometry: Add a cylinder to represent the dielectric cylinder Sources -> Cylinder Height: 100 Radius: 10 Resolution: 50 Opacity: 0.5 Orientation: (90,0,0) 54

55 Putting it all together... 55

56 Putting it all together... Goals of the exercise... Extract relevant information from the data set Show a variety of techniques that can be applied to the data set Provide enough annotation to orient the viewer Provide a visualization that communicates insight/understanding 56

57 Visualization Information Compute Canada zation Software Kitware - ParaView - VTK - VisIT - Avizo

58 The End What questions do you have? 58

Visualization with ParaView

Visualization with ParaView Visualization with Before we begin Make sure you have 3.10.1 installed so you can follow along in the lab section http://paraview.org/paraview/resources/software.html http://www.paraview.org/ Background

More information

Introduction to Visualization on Stampede

Introduction to Visualization on Stampede Introduction to Visualization on Stampede Aaron Birkland Cornell CAC With contributions from TACC visualization training materials Parallel Computing on Stampede June 11, 2013 From data to Insight Data

More information

Data analysis with ParaView CSMP Workshop 2009 Gillian Gruen

Data analysis with ParaView CSMP Workshop 2009 Gillian Gruen Data analysis with ParaView 3.4.0 CSMP Workshop 2009 Gillian Gruen How to...... display a data set ( Contour, Glyph, Clip, Slice) be efficient in displaying similar data sets ( work with Lookmarks )...

More information

Insight VisREU Site. Agenda. Introduction to Scientific Visualization Using 6/16/2015. The purpose of visualization is insight, not pictures.

Insight VisREU Site. Agenda. Introduction to Scientific Visualization Using 6/16/2015. The purpose of visualization is insight, not pictures. 2015 VisREU Site Introduction to Scientific Visualization Using Vetria L. Byrd, Director Advanced Visualization VisREU Site Coordinator REU Site Sponsored by NSF ACI Award 1359223 Introduction to SciVis(High

More information

Introduction to Python and VTK

Introduction to Python and VTK Introduction to Python and VTK Scientific Visualization, HT 2013 Lecture 2 Johan Nysjö Centre for Image analysis Swedish University of Agricultural Sciences Uppsala University 2 About me PhD student in

More information

Scalable and Distributed Visualization using ParaView

Scalable and Distributed Visualization using ParaView Scalable and Distributed Visualization using ParaView Eric A. Wernert, Ph.D. Senior Manager & Scientist, Advanced Visualization Lab Pervasive Technology Institute, Indiana University Big Data for Science

More information

Introduction to scientific visualization with ParaView

Introduction to scientific visualization with ParaView Introduction to scientific visualization with ParaView Paul Melis SURFsara Visualization group paul.melis@surfsara.nl (some slides courtesy of Robert Belleman, UvA) Outline Introduction, pipeline and data

More information

Introduction to scientific visualization with ParaView

Introduction to scientific visualization with ParaView Introduction to scientific visualization with ParaView Tijs de Kler SURFsara Visualization group Tijs.dekler@surfsara.nl (some slides courtesy of Robert Belleman, UvA) Outline Pipeline and data model (10

More information

Introduction to Scientific Visualization

Introduction to Scientific Visualization Introduction to Scientific Visualization Aaron Birkland Cornell Center for Advanced Computing Data Analysis on Ranger January 2012 A lab-intensive workshop Start off with basic concepts Data, transformations,

More information

Scientific Visualization An Introduction

Scientific Visualization An Introduction Scientific Visualization An Introduction Featuring Vetria L. Byrd, PhD Assistant Professor Research and Technology Development Conference Missouri S&T September 13, 2016 RTD 2016 Thank You! Missouri S&T

More information

Advanced Graphics: NOMAD Summer. Interactive analysis and visualization of complex datasets

Advanced Graphics: NOMAD Summer. Interactive analysis and visualization of complex datasets NOMAD Summer A hands-on course on tools for novel-materials discovery September 25-29, 2017, Berlin Advanced Graphics: Interactive analysis and visualization of complex datasets Michele Compostella Markus

More information

Introduction to Scientific Visualization in the WestGrid Environment

Introduction to Scientific Visualization in the WestGrid Environment Introduction to Scientific Visualization in the WestGrid Environment Jon Johansson Academic Information and Communication Technologies University of Alberta Slide 1 of 75 What is Scientific Visualization?

More information

VIEWZ 1.3 USER MANUAL

VIEWZ 1.3 USER MANUAL VIEWZ 1.3 USER MANUAL 2007-08 Zeus Numerix ViewZ 1.3.0 User Manual Revision: 200806061429 The latest copy of this PDF may be downloaded from the website. An online (HTML) version is also available. Zeus

More information

Visualization Of A Deterministic Radiation Transport Model Using Standard Visualization Tools

Visualization Of A Deterministic Radiation Transport Model Using Standard Visualization Tools Visualization Of A Deterministic Radiation Transport Model Using Standard Visualization Tools James A. Galbraith and L. Eric Greenwade, Idaho National Engineering and Environmental Laboratory ABSTRACT:

More information

Scalar Visualization

Scalar Visualization Scalar Visualization Visualizing scalar data Popular scalar visualization techniques Color mapping Contouring Height plots outline Recap of Chap 4: Visualization Pipeline 1. Data Importing 2. Data Filtering

More information

11/1/13. Visualization. Scientific Visualization. Types of Data. Height Field. Contour Curves. Meshes

11/1/13. Visualization. Scientific Visualization. Types of Data. Height Field. Contour Curves. Meshes CSCI 420 Computer Graphics Lecture 26 Visualization Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 2.11] Jernej Barbic University of Southern California Scientific Visualization

More information

Visualization. CSCI 420 Computer Graphics Lecture 26

Visualization. CSCI 420 Computer Graphics Lecture 26 CSCI 420 Computer Graphics Lecture 26 Visualization Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 11] Jernej Barbic University of Southern California 1 Scientific Visualization

More information

Using VTK and the OpenGL Graphics Libraries on HPCx

Using VTK and the OpenGL Graphics Libraries on HPCx Using VTK and the OpenGL Graphics Libraries on HPCx Jeremy Nowell EPCC The University of Edinburgh Edinburgh EH9 3JZ Scotland, UK April 29, 2005 Abstract Some of the graphics libraries and visualisation

More information

Introduction to Python and VTK

Introduction to Python and VTK Introduction to Python and VTK Scientific Visualization, HT 2014 Lecture 2 Johan Nysjö Centre for Image analysis Swedish University of Agricultural Sciences Uppsala University About me PhD student in Computerized

More information

Visualization Plugin for ParaView

Visualization Plugin for ParaView Alexey I. Baranov Visualization Plugin for ParaView version 2.0 Springer Contents 1 Visualization with ParaView..................................... 5 1.1 ParaView plugin installation.................................

More information

ACGV 2008, Lecture 1 Tuesday January 22, 2008

ACGV 2008, Lecture 1 Tuesday January 22, 2008 Advanced Computer Graphics and Visualization Spring 2008 Ch 1: Introduction Ch 4: The Visualization Pipeline Ch 5: Basic Data Representation Organization, Spring 2008 Stefan Seipel Filip Malmberg Mats

More information

Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 12] April 23, 2002 Frank Pfenning Carnegie Mellon University

Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 12] April 23, 2002 Frank Pfenning Carnegie Mellon University 15-462 Computer Graphics I Lecture 21 Visualization Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 12] April 23, 2002 Frank Pfenning Carnegie Mellon University http://www.cs.cmu.edu/~fp/courses/graphics/

More information

Visualization Toolkit (VTK) An Introduction

Visualization Toolkit (VTK) An Introduction Visualization Toolkit (VTK) An Introduction An open source, freely available software system for 3D computer graphics, image processing, and visualization Implemented as a C++ class library, with interpreted

More information

Tools Menu (Frequently Used Features)

Tools Menu (Frequently Used Features) Tools Menu (Frequently Used Features) Exit VoxelCalc Shop for features Show VoxelCalc User Guide (right click on oither icons shows user guide for that function) Region of Interest (ROI) tool with beam

More information

Post-processing in parafoam. Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 57

Post-processing in parafoam. Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 57 Post-processing in parafoam Håkan Nilsson, Chalmers / Applied Mechanics / Fluid Dynamics 57 Post-processing in parafoam parafoam is the main post-processor distributed with OpenFOAM. As previously mentioned,

More information

Visualization. Images are used to aid in understanding of data. Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [chapter 26]

Visualization. Images are used to aid in understanding of data. Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [chapter 26] Visualization Images are used to aid in understanding of data Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [chapter 26] Tumor SCI, Utah Scientific Visualization Visualize large

More information

3 Data Representation. Data Representation. Department of Computer Science and Engineering 3-1

3 Data Representation. Data Representation. Department of Computer Science and Engineering 3-1 Data Representation 3-1 Overview This chapter will introduce you to data representations used for Scientific Visualization. We will discuss different grid structures and ways to represent data using these

More information

Post-processing in parafoam (ParaView-5.0.1)

Post-processing in parafoam (ParaView-5.0.1) Post-processing in parafoam (ParaView-5.0.1) The 2018 installation instructions are for ParaView-5.4.1, and for the native/built-in reader. Differences will be pointed out. Note that in some cases there

More information

Introductory OpenFOAM Course From 17th to 21st February, Matteo Bargiacchi

Introductory OpenFOAM Course From 17th to 21st February, Matteo Bargiacchi Introductory OpenFOAM Course From 17th to 21st February, 2014 Matteo Bargiacchi bargiacchi@wolfdynamics.com This offering is not approved or endorsed by OpenCFD Limited, the producer of the OpenFOAM software

More information

Large Scale Visualization with ParaView 3

Large Scale Visualization with ParaView 3 Abstract Large Scale Visualization with ParaView 3 Kenneth Moreland 1 and John Greenfield 2 Sandia National Laboratories ParaView is a powerful open-source turnkey application for analyzing and visualizing

More information

Visualization Computer Graphics I Lecture 20

Visualization Computer Graphics I Lecture 20 15-462 Computer Graphics I Lecture 20 Visualization Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 12] April 15, 2003 Frank Pfenning Carnegie Mellon University http://www.cs.cmu.edu/~fp/courses/graphics/

More information

POVRAY: a tool for scientific visualisation Paul Bourke WASP, UWA

POVRAY: a tool for scientific visualisation Paul Bourke WASP, UWA POVRAY: a tool for scientific visualisation Paul Bourke WASP, UWA Introduction POVRay is a raytracer. For each position (pixels) in the image plane rays are traced from a virtual camera into a scene. The

More information

Visualization Computer Graphics I Lecture 20

Visualization Computer Graphics I Lecture 20 15-462 Computer Graphics I Lecture 20 Visualization Height Fields and Contours Scalar Fields Volume Rendering Vector Fields [Angel Ch. 12] November 20, 2003 Doug James Carnegie Mellon University http://www.cs.cmu.edu/~djames/15-462/fall03

More information

8. Tensor Field Visualization

8. Tensor Field Visualization 8. Tensor Field Visualization Tensor: extension of concept of scalar and vector Tensor data for a tensor of level k is given by t i1,i2,,ik (x 1,,x n ) Second-order tensor often represented by matrix Examples:

More information

itools Tutorial Three

itools Tutorial Three itools Tutorial Three A 3D Multiplanar Viewer Creating a 3D Multiplaner Viewer This tutorial assumes the user has a basic understanding of itools. If you are a beginning itools user, it is recommended

More information

Lecture overview. Visualisatie BMT. Goal. Summary (1) Summary (3) Summary (2) Goal Summary Study material

Lecture overview. Visualisatie BMT. Goal. Summary (1) Summary (3) Summary (2) Goal Summary Study material Visualisatie BMT Introduction, visualization, visualization pipeline Arjan Kok a.j.f.kok@tue.nl Lecture overview Goal Summary Study material What is visualization Examples Visualization pipeline 1 2 Goal

More information

Data Representation in Visualisation

Data Representation in Visualisation Data Representation in Visualisation Visualisation Lecture 4 Taku Komura Institute for Perception, Action & Behaviour School of Informatics Taku Komura Data Representation 1 Data Representation We have

More information

What is visualization? Why is it important?

What is visualization? Why is it important? What is visualization? Why is it important? What does visualization do? What is the difference between scientific data and information data Visualization Pipeline Visualization Pipeline Overview Data acquisition

More information

Surface Rendering. Surface Rendering

Surface Rendering. Surface Rendering Surface Rendering Surface Rendering Introduce Mapping Methods - Texture Mapping - Environmental Mapping - Bump Mapping Go over strategies for - Forward vs backward mapping 2 1 The Limits of Geometric Modeling

More information

Computer Graphics Ray Casting. Matthias Teschner

Computer Graphics Ray Casting. Matthias Teschner Computer Graphics Ray Casting Matthias Teschner Outline Context Implicit surfaces Parametric surfaces Combined objects Triangles Axis-aligned boxes Iso-surfaces in grids Summary University of Freiburg

More information

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D

COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 HAND OUT 1 : INTRODUCTION TO 3D COMPUTER AIDED ARCHITECTURAL GRAPHICS FFD 201/Fall 2013 INSTRUCTORS E-MAIL ADDRESS OFFICE HOURS Özgür Genca ozgurgenca@gmail.com part time Tuba Doğu tubadogu@gmail.com part time Şebnem Yanç Demirkan sebnem.demirkan@gmail.com

More information

Visualization in the Sciences Hands-On Workshop

Visualization in the Sciences Hands-On Workshop Visualization in the Sciences, Hands-On Workshop Part 1: Implement various techniques in Paraview Each of these will start by loading a data set that you are going to display. Copy the McNeil_CNTs.vtk

More information

Visualization on BioHPC

Visualization on BioHPC Visualization on BioHPC [web] [email] portal.biohpc.swmed.edu biohpc-help@utsouthwestern.edu 1 Updated for 2015-09-16 Outline What is Visualization - Scientific Visualization - Work flow for Visualization

More information

ImageVis3D "Hands On"-Session

ImageVis3D Hands On-Session ImageVis3D "Hands On"-Session Center for Integrative Biomedical Computing 2009 Workshop, Northeastern University 1 1. The current state of ImageVis3D Remember : 1. If you find any problems in ImageVis3D,

More information

Contours & Implicit Modelling 4

Contours & Implicit Modelling 4 Brief Recap Contouring & Implicit Modelling Contouring Implicit Functions Visualisation Lecture 8 lecture 6 Marching Cubes lecture 3 visualisation of a Quadric toby.breckon@ed.ac.uk Computer Vision Lab.

More information

Volume Illumination, Contouring

Volume Illumination, Contouring Volume Illumination, Contouring Computer Animation and Visualisation Lecture 0 tkomura@inf.ed.ac.uk Institute for Perception, Action & Behaviour School of Informatics Contouring Scaler Data Overview -

More information

Introduction to 3D Scientific Visualization. Training in Visualization for PRACE Summer of HPC 2013 Leon Kos, University of Ljubljana, Slovenia

Introduction to 3D Scientific Visualization. Training in Visualization for PRACE Summer of HPC 2013 Leon Kos, University of Ljubljana, Slovenia Introduction to 3D Scientific Visualization Training in Visualization for PRACE Summer of HPC 2013 Leon Kos, University of Ljubljana, Slovenia Motto Few correctly put words is worth hundreds of images.

More information

L1 - Introduction. Contents. Introduction of CAD/CAM system Components of CAD/CAM systems Basic concepts of graphics programming

L1 - Introduction. Contents. Introduction of CAD/CAM system Components of CAD/CAM systems Basic concepts of graphics programming L1 - Introduction Contents Introduction of CAD/CAM system Components of CAD/CAM systems Basic concepts of graphics programming 1 Definitions Computer-Aided Design (CAD) The technology concerned with the

More information

MATLAB 7. The Language of Technical Computing KEY FEATURES

MATLAB 7. The Language of Technical Computing KEY FEATURES MATLAB 7 The Language of Technical Computing MATLAB is a high-level technical computing language and interactive environment for algorithm development, data visualization, data analysis, and numerical

More information

Visualisation : Lecture 1. So what is visualisation? Visualisation

Visualisation : Lecture 1. So what is visualisation? Visualisation So what is visualisation? UG4 / M.Sc. Course 2006 toby.breckon@ed.ac.uk Computer Vision Lab. Institute for Perception, Action & Behaviour Introducing 1 Application of interactive 3D computer graphics to

More information

EnSight 10 Basic Training Exercises

EnSight 10 Basic Training Exercises Exercise 1: Color the Comanche helicopter EnSight 10 Basic Training Exercises 1. Start EnSight 10 and press the Cancel button on the Welcome screen 2. Click on File -> Open and select the Simple Interface

More information

In-Situ Data Analysis and Visualization: ParaView, Calalyst and VTK-m

In-Situ Data Analysis and Visualization: ParaView, Calalyst and VTK-m In-Situ Data Analysis and Visualization: ParaView, Calalyst and VTK-m GTC, San Jose, CA March, 2015 Robert Maynard Marcus D. Hanwell 1 Agenda Introduction to ParaView Catalyst Run example Catalyst Script

More information

Scalar Data. CMPT 467/767 Visualization Torsten Möller. Weiskopf/Machiraju/Möller

Scalar Data. CMPT 467/767 Visualization Torsten Möller. Weiskopf/Machiraju/Möller Scalar Data CMPT 467/767 Visualization Torsten Möller Weiskopf/Machiraju/Möller Overview Basic strategies Function plots and height fields Isolines Color coding Volume visualization (overview) Classification

More information

Scalar Algorithms: Contouring

Scalar Algorithms: Contouring Scalar Algorithms: Contouring Computer Animation and Visualisation Lecture tkomura@inf.ed.ac.uk Institute for Perception, Action & Behaviour School of Informatics Contouring Scaler Data Last Lecture...

More information

Scalar Data. Visualization Torsten Möller. Weiskopf/Machiraju/Möller

Scalar Data. Visualization Torsten Möller. Weiskopf/Machiraju/Möller Scalar Data Visualization Torsten Möller Weiskopf/Machiraju/Möller Overview Basic strategies Function plots and height fields Isolines Color coding Volume visualization (overview) Classification Segmentation

More information

Vector Visualization

Vector Visualization Vector Visualization Vector Visulization Divergence and Vorticity Vector Glyphs Vector Color Coding Displacement Plots Stream Objects Texture-Based Vector Visualization Simplified Representation of Vector

More information

RDAV Tutorial: Hands-on with VisIt on Nautilus If you want to work hands-on, you will need to install VisIt and

RDAV Tutorial: Hands-on with VisIt on Nautilus  If you want to work hands-on, you will need to install VisIt and RDAV Tutorial: Hands-on with VisIt on Nautilus http://rdav.nics.tennessee.edu/ If you want to work hands-on, you will need to install VisIt and register a password token. The data that we are using today

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 468) Vector Visualization Dr. David Koop Visualizing Volume (3D) Data 2D visualization slice images (or multi-planar reformating MPR) Indirect 3D visualization isosurfaces (or

More information

HPC Visualization with EnSight

HPC Visualization with EnSight HPC Visualization with EnSight Beijing 2010.10.27 Aric Meyer Marketing Director, Asia & Pacific CEI Computational Engineering International, Inc. Founded in 1994 out of Cray Research Headquarters in Raleigh,

More information

Lecture Topic Projects

Lecture Topic Projects Lecture Topic Projects 1 Intro, schedule, and logistics 2 Applications of visual analytics, data types 3 Data sources and preparation Project 1 out 4 Data reduction, similarity & distance, data augmentation

More information

CIS 467/602-01: Data Visualization

CIS 467/602-01: Data Visualization CIS 467/60-01: Data Visualization Isosurfacing and Volume Rendering Dr. David Koop Fields and Grids Fields: values come from a continuous domain, infinitely many values - Sampled at certain positions to

More information

Lecture overview. Visualisatie BMT. Fundamental algorithms. Visualization pipeline. Structural classification - 1. Structural classification - 2

Lecture overview. Visualisatie BMT. Fundamental algorithms. Visualization pipeline. Structural classification - 1. Structural classification - 2 Visualisatie BMT Fundamental algorithms Arjan Kok a.j.f.kok@tue.nl Lecture overview Classification of algorithms Scalar algorithms Vector algorithms Tensor algorithms Modeling algorithms 1 2 Visualization

More information

Advanced Visualization Techniques

Advanced Visualization Techniques Advanced Visualization Techniques Kelly Gaither Texas Advanced Computing Center UT/Portugal Summer Institute Coimbra, Portugal July 17, 2008 Topics Covered Remote and Collaborative Visualization EnVision

More information

SCIENTIFIC VISUALIZATION ON GPU CLUSTERS PETER MESSMER, NVIDIA

SCIENTIFIC VISUALIZATION ON GPU CLUSTERS PETER MESSMER, NVIDIA SCIENTIFIC VISUALIZATION ON GPU CLUSTERS PETER MESSMER, NVIDIA Visualization Rendering Visualization Isosurfaces, Isovolumes Field Operators (Gradient, Curl,.. ) Coordinate transformations Feature extraction

More information

Lecture Topic Projects 1 Intro, schedule, and logistics 2 Applications of visual analytics, basic tasks, data types 3 Introduction to D3, basic vis

Lecture Topic Projects 1 Intro, schedule, and logistics 2 Applications of visual analytics, basic tasks, data types 3 Introduction to D3, basic vis Lecture Topic Projects 1 Intro, schedule, and logistics 2 Applications of visual analytics, basic tasks, data types 3 Introduction to D3, basic vis techniques for non-spatial data Project #1 out 4 Data

More information

Scientific Visualization Example exam questions with commented answers

Scientific Visualization Example exam questions with commented answers Scientific Visualization Example exam questions with commented answers The theoretical part of this course is evaluated by means of a multiple- choice exam. The questions cover the material mentioned during

More information

Volume Illumination & Vector Field Visualisation

Volume Illumination & Vector Field Visualisation Volume Illumination & Vector Field Visualisation Visualisation Lecture 11 Institute for Perception, Action & Behaviour School of Informatics Volume Illumination & Vector Vis. 1 Previously : Volume Rendering

More information

LAB # 2 3D Modeling, Properties Commands & Attributes

LAB # 2 3D Modeling, Properties Commands & Attributes COMSATS Institute of Information Technology Electrical Engineering Department (Islamabad Campus) LAB # 2 3D Modeling, Properties Commands & Attributes Designed by Syed Muzahir Abbas 1 1. Overview of the

More information

VRX: Virtual Reality explorer Toolkit v A brief system specification -

VRX: Virtual Reality explorer Toolkit v A brief system specification - VRX: Virtual Reality explorer Toolkit v. 2.0 - A brief system specification - Michal Koutek, Email: M.Koutek@ewi.tudelft.nl VR and Visualization Group, Faculty of Electrical Engineering, Mathematics and

More information

CHAPTER 1 Graphics Systems and Models 3

CHAPTER 1 Graphics Systems and Models 3 ?????? 1 CHAPTER 1 Graphics Systems and Models 3 1.1 Applications of Computer Graphics 4 1.1.1 Display of Information............. 4 1.1.2 Design.................... 5 1.1.3 Simulation and Animation...........

More information

1 Motorbike with ParaFoam

1 Motorbike with ParaFoam Motorbike with ParaFoam Leon Kos, University of Ljubljana, Slovenia University of Ljubljana PRACE Summer of HPC 2017 Training Week 7 July 2017, Ostrava 1 Motorbike with ParaFoam Learning outcome After

More information

VisIt Overview. VACET: Chief SW Engineer ASC: V&V Shape Char. Lead. Hank Childs. Supercomputing 2006 Tampa, Florida November 13, 2006

VisIt Overview. VACET: Chief SW Engineer ASC: V&V Shape Char. Lead. Hank Childs. Supercomputing 2006 Tampa, Florida November 13, 2006 VisIt Overview Hank Childs VACET: Chief SW Engineer ASC: V&V Shape Char. Lead Supercomputing 2006 Tampa, Florida November 13, 2006 27B element Rayleigh-Taylor Instability (MIRANDA, BG/L) This is UCRL-PRES-226373

More information

CHAPTER 2. VISUALIZATION TECHNIQUES

CHAPTER 2. VISUALIZATION TECHNIQUES CHAPTER 2. VISUALIZATION TECHNIQUES In the past, processing speeds and memory limitations bounded the size of electromagnetic problems that could be treated by numerical algorithms. However, as computing

More information

Maya tutorial. 1 Camera calibration

Maya tutorial. 1 Camera calibration Maya tutorial In this tutorial we will augment a real scene with virtual objects. This tutorial assumes that you have downloaded the file Maya.zip from the course web page and extracted it somewhere. 1

More information

3D Programming. 3D Programming Concepts. Outline. 3D Concepts. 3D Concepts -- Coordinate Systems. 3D Concepts Displaying 3D Models

3D Programming. 3D Programming Concepts. Outline. 3D Concepts. 3D Concepts -- Coordinate Systems. 3D Concepts Displaying 3D Models 3D Programming Concepts Outline 3D Concepts Displaying 3D Models 3D Programming CS 4390 3D Computer 1 2 3D Concepts 3D Model is a 3D simulation of an object. Coordinate Systems 3D Models 3D Shapes 3D Concepts

More information

TNM093 Tillämpad visualisering och virtuell verklighet. Jimmy Johansson C-Research, Linköping University

TNM093 Tillämpad visualisering och virtuell verklighet. Jimmy Johansson C-Research, Linköping University TNM093 Tillämpad visualisering och virtuell verklighet Jimmy Johansson C-Research, Linköping University Introduction to Visualization New Oxford Dictionary of English, 1999 visualize - verb [with obj.]

More information

Getting Started. What is SAS/SPECTRAVIEW Software? CHAPTER 1

Getting Started. What is SAS/SPECTRAVIEW Software? CHAPTER 1 3 CHAPTER 1 Getting Started What is SAS/SPECTRAVIEW Software? 3 Using SAS/SPECTRAVIEW Software 5 Data Set Requirements 5 How the Software Displays Data 6 Spatial Data 6 Non-Spatial Data 7 Summary of Software

More information

Chapter 2 Surfer Tutorial

Chapter 2 Surfer Tutorial Chapter 2 Surfer Tutorial Overview This tutorial introduces you to some of Surfer s features and shows you the steps to take to produce maps. In addition, the tutorial will help previous Surfer users learn

More information

Volume visualization. Volume visualization. Volume visualization methods. Sources of volume visualization. Sources of volume visualization

Volume visualization. Volume visualization. Volume visualization methods. Sources of volume visualization. Sources of volume visualization Volume visualization Volume visualization Volumes are special cases of scalar data: regular 3D grids of scalars, typically interpreted as density values. Each data value is assumed to describe a cubic

More information

3D Data visualization with Mayavi and TVTK

3D Data visualization with Mayavi and TVTK 3D Data visualization with Mayavi and TVTK Prabhu Ramachandran Department of Aerospace Engineering IIT Bombay Advanced tutorials at SciPy09 Caltech, Pasadena Aug. 18, 2009 Prabhu Ramachandran (IIT Bombay)

More information

GUIDE TO VIEW3D. Introduction to View3D

GUIDE TO VIEW3D. Introduction to View3D View3D Guide Introduction to View3D... 1 Starting Hampson-Russell Software... 2 Starting View3D... 4 A Brief Summary of the View3D Process... 8 Loading the Seismic and Horizon Data... 8 Selection Errors...

More information

Insight: Measurement Tool. User Guide

Insight: Measurement Tool. User Guide OMERO Beta v2.2: Measurement Tool User Guide - 1 - October 2007 Insight: Measurement Tool User Guide Open Microscopy Environment: http://www.openmicroscopy.org OMERO Beta v2.2: Measurement Tool User Guide

More information

Indirect Volume Rendering

Indirect Volume Rendering Indirect Volume Rendering Visualization Torsten Möller Weiskopf/Machiraju/Möller Overview Contour tracing Marching cubes Marching tetrahedra Optimization octree-based range query Weiskopf/Machiraju/Möller

More information

Data Visualization (CIS/DSC 468)

Data Visualization (CIS/DSC 468) Data Visualization (CIS/DSC 46) Volume Rendering Dr. David Koop Visualizing Volume (3D) Data 2D visualization slice images (or multi-planar reformating MPR) Indirect 3D visualization isosurfaces (or surface-shaded

More information

move object resize object create a sphere create light source camera left view camera view animation tracks

move object resize object create a sphere create light source camera left view camera view animation tracks Computer Graphics & Animation: CS Day @ SIUC This session explores computer graphics and animation using software that will let you create, display and animate 3D Objects. Basically we will create a 3

More information

GUIDE TO View3D. Introduction to View3D

GUIDE TO View3D. Introduction to View3D View3D Guide Introduction to View3D... 1 Starting Hampson-Russell Software... 2 Starting View3D... 4 A Brief Summary of the View3D Process... 8 Loading the Seismic and Horizon Data... 8 Viewing the Data...

More information

Slicing. Slice multiple parts 13,0601,1489,1664(SP6P1)

Slicing. Slice multiple parts 13,0601,1489,1664(SP6P1) Slicing 13,0601,1489,1664(SP6P1) In this exercise, we will learn how to perform Slicing on multiple part. Slicing is the stage where the printing layers are set according to the printer definition or printing

More information

Advances in MicroStation 3D

Advances in MicroStation 3D MW1HC515 Advances in MicroStation 3D Hands-on class sponsored by the Bentley Institute Presenter: Sam Hendrick, Senior MicroStation Product Consultant Bentley Systems, Incorporated 685 Stockton Drive Exton,

More information

POWERFUL APPLICATIONS USING PYTHON IN ENSIGHT. Aric Meyer CEI Japan Users Meeting

POWERFUL APPLICATIONS USING PYTHON IN ENSIGHT. Aric Meyer CEI Japan Users Meeting POWERFUL APPLICATIONS USING PYTHON IN ENSIGHT Aric Meyer CEI Japan Users Meeting 2012-10-26 Outline 1. Overview of Python and EnSight 2. Detailed Introduction to 2 Tools 3. Quick Introduction to 6 Tools

More information

WWW home page:

WWW home page: alexander.pletzer@noaa.gov, WWW home page: http://ncvtk.sf.net/ 1 Ncvtk: A program for visualizing planetary data Alexander Pletzer 1,4, Remik Ziemlinski 2,4, and Jared Cohen 3,4 1 RS Information Systems

More information

Visualization ToolKit (VTK) Part I

Visualization ToolKit (VTK) Part I Visualization ToolKit (VTK) Part I Weiguang Guan RHPCS, ABB 131-G Email: guanw@mcmaster.ca Phone: 905-525-9140 x 22540 Outline Overview Installation Typical structure of a VTK application Visualization

More information

Visualisation of uncertainty. Kai-Mikael Jää-Aro

Visualisation of uncertainty. Kai-Mikael Jää-Aro Visualisation of uncertainty Kai-Mikael Jää-Aro Why is this important? Visualising uncertainty Means and Methods Scalar data Vector data Volume data Generic methods Let us talk about the weather A weather

More information

VisIt. Hank Childs October 10, IEEE Visualization Tutorial

VisIt. Hank Childs October 10, IEEE Visualization Tutorial VisIt IEEE Visualization Tutorial Hank Childs October 10, 2004 The VisIt Team: Eric Brugger (project leader), Kathleen Bonnell, Hank Childs, Jeremy Meredith, Mark Miller, and Brad Gas bubble subjected

More information

Previously... contour or image rendering in 2D

Previously... contour or image rendering in 2D Volume Rendering Visualisation Lecture 10 Taku Komura Institute for Perception, Action & Behaviour School of Informatics Volume Rendering 1 Previously... contour or image rendering in 2D 2D Contour line

More information

Computer Graphics 1. Chapter 2 (May 19th, 2011, 2-4pm): 3D Modeling. LMU München Medieninformatik Andreas Butz Computergraphik 1 SS2011

Computer Graphics 1. Chapter 2 (May 19th, 2011, 2-4pm): 3D Modeling. LMU München Medieninformatik Andreas Butz Computergraphik 1 SS2011 Computer Graphics 1 Chapter 2 (May 19th, 2011, 2-4pm): 3D Modeling 1 The 3D rendering pipeline (our version for this class) 3D models in model coordinates 3D models in world coordinates 2D Polygons in

More information

Visualizing the Life and Anatomy of Dark Matter

Visualizing the Life and Anatomy of Dark Matter Visualizing the Life and Anatomy of Dark Matter Subhashis Hazarika Tzu-Hsuan Wei Rajaditya Mukherjee Alexandru Barbur ABSTRACT In this paper we provide a visualization based answer to understanding the

More information

Transforming Objects and Components

Transforming Objects and Components 4 Transforming Objects and Components Arrow selection Lasso selection Paint selection Move Rotate Scale Universal Manipulator Soft Modification Show Manipulator Last tool used Figure 4.1 Maya s manipulation

More information

Remote & Collaborative Visualization. Texas Advanced Computing Center

Remote & Collaborative Visualization. Texas Advanced Computing Center Remote & Collaborative Visualization Texas Advanced Computing Center TACC Remote Visualization Systems Longhorn NSF XD Dell Visualization Cluster 256 nodes, each 8 cores, 48 GB (or 144 GB) memory, 2 NVIDIA

More information

v Data Visualization SMS 12.3 Tutorial Prerequisites Requirements Time Objectives Learn how to import, manipulate, and view solution data.

v Data Visualization SMS 12.3 Tutorial Prerequisites Requirements Time Objectives Learn how to import, manipulate, and view solution data. v. 12.3 SMS 12.3 Tutorial Objectives Learn how to import, manipulate, and view solution data. Prerequisites None Requirements GIS Module Map Module Time 30 60 minutes Page 1 of 16 Aquaveo 2017 1 Introduction...

More information

Clipping. CSC 7443: Scientific Information Visualization

Clipping. CSC 7443: Scientific Information Visualization Clipping Clipping to See Inside Obscuring critical information contained in a volume data Contour displays show only exterior visible surfaces Isosurfaces can hide other isosurfaces Other displays can

More information