- Real-Time Graphics |
- Rendering |
- Animation |
- Geometric Modeling |
- Scientific Visualization |
- Software System
- High Quality Real-Time Visualization of Static Interior Scenes
- Selective and Adaptive Supersampling for Real-Time Ray Tracing
- SIMD Optimization of Linear Expressions for Programmable Graphics Hardware
- 3D RGB Image Compression for Interactive Applications
- Compression-Based 3D Texture Mapping for Real-Time Rendering
In this work, we have been developing a real-time ray tracer on the GPU that is specialized for the photorealistic rendering of static interior scenes. By efficiently computing global illumination on the fly, the complex lighting effects inside the static interior of a room can be simulated realistically and interactively.
- Being prepared, 2009.
- Whitted-style ray tracing only.
- Computation of indirect illumination.
- Whitted-style ray tracing with indirect illumination.
- Whitted-style ray tracing only. [Whitted.mov]
- Computation of indirect illumination. [Indirect.mov]
- Whitted-style ray tracing with indirect illumination. [Final.mov]
While supersampling is an essential element for high quality rendering, high sampling rates, routinely employed in offline rendering, are still considered quite burdensome for real-time ray tracing. In this paper, we propose a selective and adaptive supersampling technique aimed at the development of a real-time ray tracer on today's many-core processors. For efficient utilization of very precious computing time, this technique explores both image--space and object--space attributes, which can be easily gathered during the ray tracing computation, minimizing rendering artifacts by cleverly distributing ray samples to rendering elements according to priorities that are selectively set by a user. Our implementation on the current GPU demonstrates that the presented algorithm makes high sampling rates as effective as 9 to 16 samples per pixel more affordable than before for real-time ray tracing.
- B. Jin, I. Ihm, B. Chang, C. Park, W. Lee, and S. Jung, "Selective and Adaptive Supersampling for Real-Time Ray Tracing," HPG 2009: The 1st ACM Conference on High-Performance Graphics, pp. 117-125, New Orleans, U.S.A., August 2009.
- Selective and adaptive supersampling (Figure 1).
- Examples of selective supersampling(Figure 6).
(b) Possibly problematic subpixels with respect to respective geometry attributes (from left to right: Object ID, Surface Normal, Shadow Count, Texture Existence; from top to bottom: at primary and secondary intersection points)
- Single- versus multiple-valued thresholds for adaptive supersampling (Figure 7).
- Data structures for our GPU implementation (Figure 8).
Video- Bathroom: 'Fixed' versus 'Selective and Adaptive' [Bathroom.mov]
- Conference: 'Fixed' versus 'Selective and Adaptive' [Conference.mov]
- Fairy Forest 1: 'Fixed' versus 'Selective and Adaptive' [FairyForest_Part1.mov]
- Fairy Forest 2: More Selective [FairyForest_Part2.mov]
PresentationSIMD Optimization of Linear Expressions for Programmable Graphics HardwareAbstractThe increased programmability of graphics hardware allows efficient GPU implementations of a wide range of general computations on commodity PCs. An important factor in such implementations is how to fully exploit the SIMD computing capacities offered by modern graphics processors. Linear expressions in the form of , where is a matrix, and , , and are vectors, constitute one of the most basic operations in many scientific computations. In this paper, we propose a SIMD code optimization technique that enables efficient shader codes to be generated for evaluating linear expressions. It is shown that performance can be improved considerably by efficiently packing arithmetic operations into four-wide SIMD instructions through reordering of the operations in linear expressions. We demonstrate that the presented technique can be used effectively for programming both vertex and pixel shaders for a variety of mathematical applications, including integrating differential equations and solving a sparse linear system of equations using iterative methods.
Paper- C. Bajaj, I. Ihm, J. Min, and J. Oh, "SIMD Optimization of Linear Expressions for Programmable Graphics Hardware", Computer Graphics Forum, Vol. 23, No. 4, pp. 697-714, December 2004.
ImageThe diagonal block of the matrix in the enhanced block Jacobi solver for 3D Poisson equations ( and ) :
3D RGB Image Compression for Interactive ApplicationsAbstractThis paper presents a new 3D RGB image compression scheme designed for interactive real-time applications. In designing our compression method, we have compromised between two important goals: high compression ratio and fast random access ability, and have tried to minimize the overhead caused during run-time reconstruction. Our compression technique is suitable for applications wherein data are accessed in a somewhat unpredictable fashion, and real-time performance of decompression is necessary. The experimental results on three different kinds of 3D images from medical imaging, image-based rendering, and solid texture mapping suggest that the compression method can be used effectively in developing real-time applications that must handle large volume data, made of color samples taken in three- or higher-dimensional space.
Paper- C. Bajaj, I. Ihm, and S. Park, "3D RGB Image Compression for Interactive Applications", ACM Transactions on Graphics, Vol. 20, No. 1, pp. 10-38, January 2001.
Image- The Zerobit encoding scheme
- Sample rendered images ( -lerp)
Compression-Based 3D Texture Mapping for Real-Time RenderingAbstractWhile 2D texture mapping is one of the most effective rendering techniques that make 3D objects appear visually interesting, it often suffers from visual artifacts produced when 2D image patterns are wrapped onto the surface of objects with arbitrary shapes. On the other hand, 3D texture mapping generates highly natural visual effects in which objects appear carved from lumps of materials rather than laminated with thin sheets as in 2D texture mapping. Storing 3D texture images in a table for fast mapping computations, instead of evaluating procedures on the fly, however, has been considered impractical due to the extremely high memory requirement. In this paper, we present a new effective method for 3D texture mapping designed for real-time rendering of polygonal models. Our scheme attempts to resolve the potential texture memory problem by compressing 3D textures using a wavelet-based encoding method. The experimental results on various non-trivial 3D textures and polygonal models show that high compression rates are achieved with few visual artifacts in the rendered images and a small impact on rendering time. The simplicity of our compression-based scheme will make it easy to implement practical 3D texture mapping in software/hardware rendering systems including the real-time 3D graphics APIs like OpenGL and Direct3D.
Paper- C. Bajaj, I. Ihm, and S. Park, "Compression-Based 3D Texture Mapping for Real-Time Rendering", Graphical Models, Vol. 62. No. 6, pp. 391-410, November 2000.
- C. Bajaj, I. Ihm, and S. Park, "Making 3D Textures Practical", Pacific Graphics '99, pp. 259-268, Seoul, Korea, October 1999.
Image- 3D texture mapping pipeline
- Images rendered with GL_LINEAR from compressed textures (10%)
- Aliasing artifacts of compression-based 3D texture mapping (2X)
- 3D mipmapping with zerobit encoding
- Single- versus multiple-valued thresholds for adaptive supersampling (Figure 7).