Feature Tracking and Viewing for Time-Varying Data Sets

Total Page:16

File Type:pdf, Size:1020Kb

Feature Tracking and Viewing for Time-Varying Data Sets FEATURE TRACKING AND VIEWING FOR TIME-VARYING DATA SETS DISSERTATION Presented in Partial Fulfillment of the Requirements for the Degree Doctor of Philosophy in the Graduate School of The Ohio State University By Guangfeng Ji, M.E. ***** The Ohio State University 2006 Dissertation Committee: Approved by Professor Han-Wei Shen, Adviser Professor Rephael Wenger Adviser Professor Raghu Machiraju Graduate Program in Computer Science and Engineering ABSTRACT Feature tracking plays an important role in understanding time-varying data sets since it allows scientists to focus on regions of interest and track their evolution and interaction over time. In this work, we first present an efficient algorithm to track time- varying isosurface and interval volume features using isosurfacing in higher dimensions. Instead of extracting these isosurface or interval volume features separately from mul- tiple time steps and computing the spatial correspondence between them, our algorithm extracts the correspondence directly from the higher dimensional geometry and allows more efficient feature tracking. We further show that the correspondence relationship for time-varying isosurfaces can only change at critical isovalues in R3 or R4. Based on the observation, we present a method to pre-compute the correspondence relationship at a preprocessing stage. At run time, isosurface tracking can be efficiently performed by simple table lookup operations with minimal overhead. For complex data sets, the previous feature tracking methods cannot guarantee the globally best matching because these methods use local matching criteria and track features independently in the local neighborhood. To amend the problem, we propose a novel global tracking technique to track features, which defines the globally best match as the one with a minimal overall matching cost. Noticing the deficiencies of previous tracking criteria, we use the Earth Mover’s Distance as a better metric to measure the matching cost. We also propose an efficient branch-and-bound algorithm to search the global minimal cost. ii In addition to tracking features, another important problem is how to view the time- varying features effectively. Due to the time-varying nature, animation remains the most general and common way to show how time-varying features evolve over time. A key issue of generating a good animation is to select ideal views through which the user can perceive the maximum information of the time-varying features. In this work, an algorithm is also presented to select dynamic views. We first propose an improved view selection method for static data, which measures the quality of a static view by analyz- ing the opacity, color and curvature distributions of the feature rendering images from the given view. A dynamic programming approach is used to select dynamic views. The process maximizes the information perceived from the time-varying features based on the constraint that the view should show smooth changes of direction and near-constant speed. Our feature tracking and viewing algorithms provide the user with a more effec- tive and efficient way to study the time-varying features, and allow the user to gain more insight into the time-varying data sets. iii Dedicated to my parents . iv ACKNOWLEDGMENTS First of all, I would like to express my sincere gratitude to my adviser, Dr. Han-Wei Shen, for his guidance, encouragement and support, during my years of Ph.D study at The Ohio State University. His insights, encouragement and solid professional knowl- edge have guided me through difficulties and challenges. I learned a lot from him and his valuable advices will accompany me throughout my career. I have been truly lucky to have the opportunity to work with him. Without his help and support, this dissertation would not be possible. I would also like to thank my dissertation committee members, Dr. Rephael Wenger and Dr. Raghu Machiraju for giving me valuable suggestions during my research and dissertation writing. Many fruitful hours were spent with them discussing research and the dissertation. They showed me new perspective of looking at problems, and broad- ened my thinking and knowledge scope. I also want to thank Dr. Roger Crawfis for his great help on my research. I want to thank my colleagues and friends for their great help. I really enjoyed the time I work with my team members: Jonathan Woodring, Chaoli Wang, Liya Li, Jinzhu Gao, Udeepta Bordoloi, and Antonio Garcia. We spent many hours discussing research and exchanging ideas. We shared code and helped on implementations. Yipeng Li and Yisheng Chen have spent their precious time helping me teaching. Caixia Zhang also v helped me a lot. I really enjoyed the time spending with all of my colleagues and friends and appreciate their great help. My family has always been there for me. Their unqualified love and support have been accompanying me throughout the journey. I am truly grateful to have such a happy and supportive family. vi VITA June 19, 1976 . Born - Shanxi, China 1993-1997 . B.S. Computer Science Peking University, China 1997-2000 . M.E. Computer Science Chinese Academy of Sciences, China 2000-2001 . Graduate Teaching Associate The Ohio State University 2001-2005 . Graduate Research Associate The Ohio State University 2005-present . Graduate Teaching Associate The Ohio State University PUBLICATIONS Research Publications G. Ji and H-W. Shen. Dynamic View Selection for Time-Varying Volumes. Technical report OSU-CISRC-5/06-TR50, The Ohio State University G. Ji and H-W. Shen. Feature Tracking Using Earth Mover’s Distance and Global Optimization. Technical report OSU-CISRC-5/06-TR49, The Ohio State University G. Ji and H-W. Shen. Time-Varying Isosurface Tracking by Global Optimization. Tech- nical report OSU-CISRC-2/05-TR12, The Ohio State University, 2005 G. Ji and H-W. Shen. Efficient Isosurface Tracking Using Precomputed Correspondence Table. In Joint Eurographics - IEEE TCVG Symposium on Visualization 2004, pages 283–292, 2004. vii G. Ji, H-W. Shen, and R. Wenger. Volume Tracking Using Higher Dimensional Isosur- facing. In Proceedings of IEEE Visualization 2003, pages 209–216, 2003. G. Ji, H-W. Shen and J. Gao. Interactive Exploration of Remote Isosurfaces with Point- Based Non-Photorealistic Rendering. Technical report OSU-CISRC-7/03-TR37, The Ohio State University FIELDS OF STUDY Major Field: Computer Science and Engineering viii TABLE OF CONTENTS Page Abstract . ii Dedication . iv Acknowledgments . v Vita . vii List of Tables . xii List of Figures . xiii Chapters: 1. Introduction . 1 1.1 Problem Statement . 1 1.2 Challenges . 3 1.3 Strategies and Contributions . 5 1.4 Organization . 10 2. Related Work . 12 2.1 Feature Tracking . 12 2.1.1 Aggregate Attribute Based Methods . 12 2.1.2 Volume Overlapping Based Methods . 14 2.2 View Selection . 17 2.2.1 Static View Selection . 17 2.2.2 Dynamic View Selection . 19 ix 3. Volume Tracking Using Higher Dimensional Isosurfacing . 21 3.1 Overview . 21 3.2 Isosurface Tracking . 21 3.2.1 Extracting Overlapping Time-varying Isosurfaces . 22 3.2.2 Verification . 27 3.3 Interval Volume Tracking . 29 3.3.1 Extracting Overlapping Time-Varying Interval Volumes . 29 3.3.2 Verification . 34 3.4 Results . 34 3.5 Summary . 37 4. Efficient Isosurface Tracking Using Precomputed Correspondence Table . 43 4.1 Overview . 43 4.2 Isosurface Tracking . 44 4.2.1 Tracking by Using Higher Dimensional Isosurfacing . 44 4.2.2 Generation of the Correspondence Lookup Table . 45 4.2.3 Optimization in Generation of the Correspondence Table . 54 4.2.4 Isosurface Tracking Using Correspondence Lookup Table . 55 4.3 Results . 56 4.4 Summary . 62 5. Feature Tracking Using Earth Mover’s Distance and Global Optimization . 65 5.1 Overview . 65 5.2 Using Earth Mover’s Distance as Matching Cost . 68 5.2.1 Earth Mover’s Distance . 71 5.2.2 Efficient EMD Computation . 73 5.3 Global Optimization Based on Branch-and-Bound . 75 5.3.1 The Search Tree . 75 5.3.2 Branch and Bound . 78 5.3.3 Further Speedup by a Good Estimation of the Minimal Cost . 80 5.3.4 Using EMD to Identify Compound Component Candidates . 81 5.4 Results . 83 5.5 Summary . 88 6. Dynamic View Selection for Time-Varying Volumes . 89 6.1 Overview . 89 6.2 Static View Selection . 90 x 6.2.1 Measurement of Opacity Distribution and Projection Size . 91 6.2.2 Measurement of Color Distribution . 93 6.2.3 Measurement of Curvature Information . 96 6.2.4 The Final Utility Function . 97 6.3 Dynamic View Selection . 98 6.3.1 Time-Varying View Selection . 99 6.3.2 Viewing Path Between any Two Views in a Given Timestep . 103 6.4 Results . 105 6.5 Summary . 109 7. Conclusions and Future Work . 117 Bibliography . 120 xi LIST OF TABLES Table Page 3.1 The time to track the isosurface component illustrated in Figure 3.5 (in seconds). 36 3.2 The time to track interval volume components illustrated in Figure 3.6 (in seconds). 37 4.1 The time to track the whole isosurface illustrated in figure 4.5 (in sec- onds). Timing from 5 time steps are shown due to space limitation. 58 4.2 The time to track two isosurface components illustrated in figure 4.6 (in seconds). Timing from time step 4, 9, 15 and 21 are shown due to space limitation. 59 4.3 The time to track two isosurface components illustrated in figure 4.7 (in seconds). Timing from time step 1, 2, 6, 7 and 14 are shown due to space limitation. 60 4.4 The comparison between two methods to generate the correspondence lookup table. 61 5.1 The timing (in seconds) for the case in figure 5.8. 86 3 6 11 5.2 The EMD values for F0 , F0 and F0 .
Recommended publications
  • Iso-Surface Volume Rendering: Speed and Accuracy for Medical Applications Proefschrift Universiteit Twente, Enschede
    Iso-Surface Volume Rendering Speed and Accuracy for Medical Applications Marco Bosma Copyright © 2000 by M.K. Bosma All rights reserved. No part of this publication may be reproduced, stored in a retrieval system, or transmitted, in any form or by any means, electronic, mechanical, photocopying, recording, or otherwise, without prior written permission of the copyright owner. Bosma, Marco Klaas Iso-Surface Volume Rendering: Speed and Accuracy for Medical Applications Proefschrift Universiteit Twente, Enschede. -Met index, lit. opg. -Met samenvatting in het Nederlands ISBN 90-365-1397-5 Eerste Uitgave 2000 Druk: PrintPartners Ipskamp, Enschede ISO-SURFACE VOLUME RENDERING: SPEED AND ACCURACY FOR MEDICAL APPLICATIONS PROEFSCHRIFT ter verkrijging van de graad van doctor aan de Universiteit Twente, op gezag van de rector magnificus, prof. dr. F.A. van Vught, volgens besluit van het College voor Promoties in het openbaar te verdedigen op vrijdag 20 oktober 2000 te 16.45 uur. door Marco Klaas Bosma geboren op 28 oktober 1970 te Losser Dit proefschrift is goedgekeurd door: Prof. Dr.-Ing. O.E. Herrmann (promotor) en Ir. J. Smit (assistent-promotor) SUMMARY This thesis describes the research on the accuracy and speed of different methods for the visualization of three-dimensional (3D) sets of (measured) data. In medical environments, these 3D datasets are generated by for instance CT and MRI scanners. The medical application makes special demands on the visualization methods. Medical application of 3D visualization methods asks for high accuracy. For practical application, the speed of the visualization should also be high, preferably real-time (25 images per second or higher).
    [Show full text]
  • A Comparative Analysis of Iso-Surface Generation Techniques for 3D Scalar Field Visualization
    ISSN 2321 3361 © 2020 IJESC Research Article Volume 10 Issue No.7 A Comparative Analysis of Iso-surface Generation Techniques for 3D Scalar Field Visualization Shubhashree Sahoo Department of Computer Science and Engineering Teegala Krishna Reddy Engineering College, India Abstract: A simple and efficient method for the extraction of high-quality continuous isosurfaces from the volumetric datasets is implemented and tested. The present method proceeds in two steps. In the first step, a continuous interpolant of the dataset were determined and second step involves the extraction of isosurface geometry by sampling the points on Marching Cubes triangles and projecting them onto the isosurface defined by the interpolant. The algorithms are studied and implemented using Matlab. The results using a synthetic datasets and discussion of practical considerations are presented. The importance of present method is that the proposed implementation could be applied to any arbitrary data. Keywords: Volumetric visualization, Iso-surface generation, Marching Cubes, MATLAB environment. 1. INTRODUCTION 2. RELATED WORK Recent preferment in computing hardware has eased the job of There are assorted approaches to the difficulty of 3D isosurface researchers and practitioners to model and simulate a variety of generation [5]. One of the elderly approaches involves physical phenomena in a faster and efficient manner [1]. The construction of surface contours and its interconnection. output of such simulations and measurements is a dataset, which However, presence of more than one contour in a slice causes is massive in size and complex in nature. The eminent challenge ambiguity. The Mayo Clinic has used a different approach that is extraction of essential information from such a huge dataset.
    [Show full text]
  • 1 Parallel Algorithms for Volumetric Surface Construction Joseph Jaja
    1 Parallel Algorithms for Volumetric Surface Construction Joseph JaJa, Qingmin Shi, and Amitabh Varshney Institute for Advanced Computer Studies University of Maryland, College Park Summary Large scale scientific data sets are appearing at an increasing rate whose sizes can range from hundreds of gigabytes to tens of terabytes. Isosurface extraction and rendering is an important visualization technique that enables the visual exploration of such data sets using surfaces. However the computational requirements of this approach are substantial which in general prevent the interactive rendering of isosurfaces for large data sets. Therefore, parallel and distributed computing techniques offer a promising direction to deal with the corresponding computational challenges. In this chapter, we give a brief historical perspective of the isosurface visualization approach, and describe the basic sequential and parallel techniques used to extract and render isosurfaces with a particular focus on out-of-core techniques. For parallel algorithms, we assume a distributed memory model in which each processor has its own local disk, and processors communicate and exchange data through an interconnection network. We present a general framework for evaluating parallel isosurface extraction algorithms and describe the related best known parallel algorithms. We also describe the main parallel strategies used to handle isosurface rendering, pointing out the limitations of these strategies. 1. Introduction Isosurfaces have long been used as a meaningful way to represent feature boundaries in 2 volumetric datasets. Surface representations of volumetric datasets facilitate visual comprehension, computational analysis, and manipulation. The earliest beginnings in this field can be traced to microscopic examination of tissues. For viewing opaque specimen it was considered desirable to slice the sample at regular intervals and to view each slice under a microscope.
    [Show full text]
  • Topology Preserving Isosurface Extraction for Geometry Processing
    Topology Preserving Isosurface Extraction for Geometry Processing Gokul Varadhan1, Shankar Krishnan2, TVN Sriram1, and Dinesh Manocha1 1Department of Computer Science, University of North Carolina, Chapel Hill, U.S.A 2AT&T Labs - Research, Florham Park, New Jersey, U.S.A http://gamma.cs.unc.edu/recons ABSTRACT Marching Cubes (MC) [2] or any of its variants [3–5]. We We address the problem of computing a topology preserving refer to these isosurface extraction algorithms collectively as isosurface from a volumetric grid using Marching Cubes for MC-like algorithms. The output of an MC-like algorithm is geometry processing applications. We present a novel adap- an approximation – usually a polygonal approximation – of tive subdivision algorithm to generate a volumetric grid. the implicit surface. We refer to this step as reconstruction Our algorithm ensures that every grid cell satisfies certain of the implicit surface. sampling criteria. We show that these sampling criteria Compared to other surface representations (e.g. para- are sufficient to ensure that the isosurface extracted from metric surfaces), implicit surface representations are easy to the grid using Marching Cubes is topologically equivalent use to perform geometric operations like union, intersection, to the exact isosurface: both the exact isosurface and the difference, blending, and warping. Specifically, they map extracted isosurface have the same genus and connectivity. Boolean operations into simple minimum/maximum opera- We use our algorithm for accurate boundary evaluation of tions on the scalar fields of the primitives. Suppose we have Boolean combinations of polyhedra and low degree algebraic two primitives P1 and P2 with scalar fields f1 and f2.
    [Show full text]
  • A Near Optimal Isosurface Extraction Algorithm Using the Span Space
    IEEE TRANSACTIONS ON VISUALIZATION AND COMPUTER GRAPHICS, VOL. 2, NO. 1, MARCH 1996 73 A Near Optimal Isosurface Extraction Algorithm Using the Span Space Yarden Livnat, Han-Wei Shen, and Christopher R. Johnson Abstract- We present the “Near Optimal IsoSurface Extraction” (NOISE) algorithm for rapidly extracting isosurfaces from struc- tured and unstructured grids. Using the span space, a new representation of the underlying domain, we develop an isosurface ex- traction algorithm with a worst case complexity of o(& + c) for the search phase, where n is the size of the data set and k is the number of cells intersected by the isosurface. The memory requirement is kept at O(n) while the preprocessing step is O(n log n). We utilize the span space representation as a tool for comparing isosurface extraction methods on structured and unstructured grids. We also present a fast triangulation scheme for generating and displaying unstructured tetrahedral grids. Index Terms- lsosurface extraction, unstructured grids, span space, kd-trees. 1 INTRODUCTION SOSURFACE extraction is a powerful tool for investigating has an improved time complexity of O(klog(f)), the algo- I scalar fields within volumetric data sets. The position of an isosurface, as well as its relation to other neighboring isosur- rithm is only suitable for structured hexahedral grids. faces, can provide clues to the underlying structure of the In this paper we introduce a new view of the underlying scalar field. In medical imaging applications, isosurfaces domain. We call this new representation the span space. permit the extraction of particular anatomical structures and Based on this new perspective, we propose a fast and effi- tissues.
    [Show full text]
  • Verifiable Visualization for Isosurface Extraction
    Verifiable Visualization for Isosurface Extraction T. Etiene, C. Scheidegger, L.G. Nonato, R.M. Kirby Member, IEEE, C.T. Silva Member, IEEE Fig. 1. Through the verification methodology presented on this paper we were able to uncover a convergence problem within a publicly available marching-based isosurfacing code (top left) and fix it (top right). The problem causes the mesh normals to disagree with the known gradient field when refining the voxel size h (bottom row). The two graphs show the convergence of the normals before and after fixing the code. Abstract— Visual representations of isosurfaces are ubiquitous in the scientific and engineering literature. In this paper, we present techniques to assess the behavior of isosurface extraction codes. Where applicable, these techniques allow us to distinguish whether anomalies in isosurface features can be attributed to the underlying physical process or to artifacts from the extraction process. Such scientific scrutiny is at the heart of verifiable visualization – subjecting visualization algorithms to the same verification process that is used in other components of the scientific pipeline. More concretely, we derive formulas for the expected order of accuracy (or convergence rate) of several isosurface features, and compare them to experimentally observed results in the selected codes. This technique is practical: in two cases, it exposed actual problems in implementations. We provide the reader with the range of responses they can expect to encounter with isosurface techniques, both under “normal operating conditions” and also under adverse conditions. Armed with this information – the results of the verification process – practitioners can judiciously select the isosurface extraction technique appropriate for their problem of interest, and have confidence in its behavior.
    [Show full text]
  • Visualising the Evolution of Aerodynamic Flows Over Time Using Trees
    IMPERIAL COLLEGE LONDON MENG INDIVIDUAL PROJECT Visualising the Evolution of Aerodynamic Flows over Time using Trees Author: Supervisor: Mihai POPA Prof. Paul KELLY Department of Computing June 19, 2017 ii Abstract Exploring the evolution of features in large-scale time-varying fields is an important problem in a wide range of science and engineering areas. One example is the area of Computational Fluid Dynamics (CFD), where the effi- cient analysis of time-dependent data produced by CFD solvers is essential to the understanding of fluid flows and their applicability to engineering prob- lems. Contour trees represent a data structure often used to explore discrete fields, while ignoring the temporal dimension of the data. They are built to capture the nesting relationship between the features of one field, and have been often used as a feature extraction strategy. In this project we present an algorithm for tracking features in time-varying datasets, based on spatial overlap and on the structures of the contour trees corresponding to the data. We integrated the developed algorithm in an in- teractive graphical interface, where the temporal evolution of field features can be visualized. The efficiency of the tracking tool was then demonstrated on datasets belonging to CFD simulations. Finally, we analyzed the feasibil- ity of running the tracking algorithm in-situ, by integrating it in PyFR, a CFD solver developed at Imperial College London. iii Acknowledgements Firstly, I would like to thank to Prof. Paul Kelly for his continuous guid- ance and inspiration throughout this project. I am also extremely grateful to Dr. Peter Vincent for his enthusiasm in steering the project in the right direc- tion.
    [Show full text]
  • Scientific Visualization & Virtual Reality Visualization of Medical
    Scientific Visualization & Virtual Reality Visualization of Medical Datasets Roberto Valenti, 0493198 Felix Hageloh, 0425257 Introduction Goal of this assignment was to develop a full application that allows physicians to analyze and explore data from CT or MRI scanners. This data consist of scan slices of a patient that can be combined to form a 3D presentation of the insides of a patient. Traditionally, each slice was printed on transparent film and then analyzed separately, which means the physicians had to construct the 3D representation in their mind in order to form a diagnosis. The application we implemented in this assignment automatically constructs this 3D representation for the physician and thus allowing the physicians to effectively visualize and analyze this data, extracting additional information through the use of computer graphics. The project comprehends the following tasks: Isosurface Visualization Interactive Framerates Threshold Level Isosurface Extraction Segmentation and Quantification Slice Extraction Volume Rendering The visualization part of the program was implemented using the VTK open source library. For implementing and designing the graphical user interface we used QT which since recently features a binding for VTK. In the following sections we will give and overview of our application and look at each part in detail, explain our implementation and mention the VTK classes we used. Furthermore we will give some impression of the final application and show the results of the experiments we conducted with it. Finally we will discuss the results of our experiments, what was achieved in this assignment including its weak points and we will come to a conclusion. Problem Description We will now explain in more detail what was required from this application.
    [Show full text]
  • Fast Isosurface Extraction Methods for Large Image Data Sets
    44 Fast Isosurface Extraction Methods for Large Image Data Sets Yarden Livnat Steven G. Parker Christopher R. Johnson University of Utah 1 Introduction 731 2 Accelerated Search 732 2.1 The Span Space • 2.2 The NOISE Algorithm • 2.3 Optimization • 2.4 Other Span Space Algorithms 3 View Dependent Algorithm 735 3.1 Visibility • 3.2 Image Space Culling • 3.3 Warped IsoSurface Extraction (WISE) 4 Real-Time Ray Tracing 738 4.1 Ray-Isosurface Intersection • 4.2 Optimizations • 4.3 Real-Time Ray Tracing Results 5 Example Applications 742 References 744 1 Introduction Isosurface extraction is a powerful tool for investigating volumetric scalar fields and has been used extensively in medical imaging ever since the seminal paper by Lorensen and Kline on marching cubes [1, 2]. In medical imaging applications, isosurfaces permit the extraction of anatomical structures and tissues. Since the inception of medical imaging, scanners continually have increased in their resolution capability. This increased image resolution has been instrumental in the use of 3D images for diagnosis, surgical planning, and with the advent of the GE Open MRI system, for surgery itself. Such increased resolution, however, has caused researchers to look beyond marching cubes in order to obtain near-interactive rates for such large-scale imaging data sets. As such, there has been a renewed interested in creating isosurface algorithms that have optimal complexity and can take advantage of advanced computer architectures. In this chapter, we discuss three techniques developed by the authors (and colleagues) for fast isosurface extraction for large-scale imaging data sets. The first technique is the near optimal isosurface extraction (NOISE) algorithm for rapidly extracting isosurfaces.
    [Show full text]
  • Topology, Accuracy, and Quality of Isosurface Meshes Using Dynamic Particles
    Topology, Accuracy, and Quality of Isosurface Meshes Using Dynamic Particles Miriah Meyer, Student Member, IEEE, Robert M. Kirby, Member, IEEE, and Ross Whitaker, Member, IEEE Abstract— This paper describes a method for constructing isosurface triangulations of sampled, volumetric, three-dimensional scalar fields. The resulting meshes consist of triangles that are of consistently high quality, making them well suited for accurate interpolation of scalar and vector-valued quantities, as required for numerous applications in visualization and numerical simulation. The proposed method does not rely on a local construction or adjustment of triangles as is done, for instance, in advancing wavefront or adaptive refinement methods. Instead, a system of dynamic particles optimally samples an implicit function such that the particles’ relative positions can produce a topologically correct Delaunay triangulation. Thus, the proposed method relies on a global placement of triangle vertices. The main contributions of the paper are the integration of dynamic particles systems with surface sampling theory and PDE-based methods for controlling the local variability of particle densities, as well as detailing a practical method that accommodates Delaunay sampling requirements to generate sparse sets of points for the production of high-quality tessellations. Index Terms—Isosurface extraction, particle systems, Delaunay triangulation. 1 INTRODUCTION The problem of surface meshing has been studied extensively in a wide proposed method trades geometric accuracy for mesh quality and topo- array of applications and contexts by a range of disciplines, from visu- logical consistency, resulting in numerically useful meshes. alization and graphics to computational geometry and applied mathe- The strategy described in this paper combines work from several matics.
    [Show full text]
  • Faster Isosurface Ray Tracing Using Implicit KD-Trees Ingo Wald, Heiko Friedrich, Gerd Marmitt, Philipp Slusallek and Hans-Peter Seidel
    1 Faster Isosurface Ray Tracing using Implicit KD-Trees Ingo Wald, Heiko Friedrich, Gerd Marmitt, Philipp Slusallek and Hans-Peter Seidel Abstract— The visualization of high-quality isosurfaces at interactive rates is an important tool in many simulation and visualization applications. Today, isosurfaces are most often visualized by extracting a polygonal approximation that is then rendered via graphics hardware, or by using a special variant of pre-integrated volume rendering. However, these approaches have a number of limitations in terms of quality of the isosurface, lack of performance for complex data sets, or supported shading models. An alternative isosurface rendering method that does not suffer from these limitations is to directly ray trace the isosurface. However, this approach has been much too slow for interactive applications unless massively parallel shared-memory supercomputers have been used. In this paper, we implement interactive isosurface ray tracing on commodity desktop PCs by building on recent advances in real-time ray tracing of polygonal scenes, and using those to improve isosurface ray tracing performance as well. The high performance and scalability of our approach will be demonstrated with several practical examples, including the visualization of highly complex isosurface data sets, the interactive rendering of hybrid polygonal/isosurface scenes including high-quality ray traced shading effects, and even interactive global illumination on isosurfaces. Index Terms— Ray tracing, real-time rendering, isosurface, visualization, global illumination ✦ 1 INTRODUCTION procedure is problematic for interactive applications in which the users tend to ’browse’ the data by modifying ANY disciplines require the interactive or real- the isovalue interactively. time visualization of three-dimensional scalar M Finally, the set of visual effects that can be simulated fields ρiso = ρ(x,y,z), which are most commonly given as with the standard approaches is limited.
    [Show full text]
  • Particle-Based Fluid Simulation
    Particle-Based Fluid Simulation CSE169: Computer Animation Steve Rotenberg UCSD, Spring 2016 Del Operations 휕 휕 휕 • 훻 = Del: 휕푥 휕푦 휕푧 휕푠 휕푠 휕푠 • 훻푠 = Gradient: 휕푥 휕푦 휕푧 휕푣 휕푣 휕푣 • Divergence: 훻 ∙ 퐯 = 푥 + 푦 + 푧 휕푥 휕푦 휕푧 휕푣 휕푣 휕푣 휕푣 휕푣 휕푣 • Curl: 훻 × 퐯 = 푧 − 푦 푥 − 푧 푦 − 푥 휕푦 휕푧 휕푧 휕푥 휕푥 휕푦 휕2푠 휕2푠 휕2푠 • Laplacian: 훻2푠 = + + 휕푥2 휕푦2 휕푧2 Transport Equations 푑푠 • Advection: = −퐯 ∙ 훻푠 푑푡 푑퐯 • Convection: = −퐯 ∙ 훻퐯 푑푡 푑푠 • Diffusion: = 푘훻2푠 푑푡 푑퐯 • Viscosity: = 휇훻2퐯 푑푡 푑퐯 • Pressure: = −훻푝 푑푡 Navier-Stokes Equation • The incompressible Navier-Stokes equation describes the forces on a fluid as the sum of convection, viscosity, and pressure terms: 휕퐯 2 = −퐯 ∙ 훻퐯 + 휇훻 퐯 −훻푝 휕푡 • In addition, we also have the incompressibility constraint: 훻 ∙ 퐯 = 0 • As discussed in the previous lecture, these are formulated from the point of view of a fixed point in space (Eulerian frame of reference) Lagrangian Approach • In the Lagrangian approach, we formulate the Navier-Stokes equation from the point of view of a particle moving along with the fluid • The pressure and viscosity terms don’t change, but the convection term goes away entirely 푑퐯 2 = 휇훻 퐯 −훻푝 푑푡 1 • The paper also adds a term for externally applied forces as well as a 휌 term to account for the fact that the particle based methods will have some variation in density 푑퐯푖 2 1 퐟푖 = 휇훻 퐯푖 − 훻푝푖 + 푑푡 휌푖 푚푖 Particle-Based Fluids Grid-Based Methods • Fluid dynamics has traditionally been simulated on uniform grids or irregular meshes • These techniques are good for engineering applications due to their
    [Show full text]