Table of Contents
Fetching ...

Accelerating Transfer Function Update for Distance Map based Volume Rendering

Michael Rauter, Lukas Zimmermann, Markus Zeilinger

TL;DR

This work tackles the bottleneck of updating distance-map based empty-space skipping when the transfer function (TF) changes in direct volume rendering. It introduces intensity partitioning to create partitioned occupancy maps (POMs) and partitioned distance maps (PDMs), enabling rapid construction of a final distance map $D'(x,y,z) = \min_{p \in S} \mathrm{PDM}_p(x,y,z)$ where $D' \le D$. The approach is implemented in GLSL compute shaders using 8-bit textures, with preprocessing to compute POMs/PDMs and a multi-pass merge to form $D'$, reducing TF-update times by up to a factor of about $30$ for some partition counts. While rendering performance remains competitive with the baseline distance-map method, there is a memory and initialization overhead, and performance gains depend on TF distribution and dataset. Overall, the method extends the fastest known ESS technique to support frequent TF updates, enabling higher frame rates in interactive applications such as VR volume rendering.

Abstract

Direct volume rendering using ray-casting is widely used in practice. By using GPUs and applying acceleration techniques as empty space skipping, high frame rates are possible on modern hardware. This enables performance-critical use-cases such as virtual reality volume rendering. The currently fastest known technique uses volumetric distance maps to skip empty sections of the volume during ray-casting but requires the distance map to be updated per transfer function change. In this paper, we demonstrate a technique for subdividing the volume intensity range into partitions and deriving what we call partitioned distance maps. These can be used to accelerate the distance map computation for a newly changed transfer function by a factor up to 30. This allows the currently fastest known empty space skipping approach to be used while maintaining high frame rates even when the transfer function is changed frequently.

Accelerating Transfer Function Update for Distance Map based Volume Rendering

TL;DR

This work tackles the bottleneck of updating distance-map based empty-space skipping when the transfer function (TF) changes in direct volume rendering. It introduces intensity partitioning to create partitioned occupancy maps (POMs) and partitioned distance maps (PDMs), enabling rapid construction of a final distance map where . The approach is implemented in GLSL compute shaders using 8-bit textures, with preprocessing to compute POMs/PDMs and a multi-pass merge to form , reducing TF-update times by up to a factor of about for some partition counts. While rendering performance remains competitive with the baseline distance-map method, there is a memory and initialization overhead, and performance gains depend on TF distribution and dataset. Overall, the method extends the fastest known ESS technique to support frequent TF updates, enabling higher frame rates in interactive applications such as VR volume rendering.

Abstract

Direct volume rendering using ray-casting is widely used in practice. By using GPUs and applying acceleration techniques as empty space skipping, high frame rates are possible on modern hardware. This enables performance-critical use-cases such as virtual reality volume rendering. The currently fastest known technique uses volumetric distance maps to skip empty sections of the volume during ray-casting but requires the distance map to be updated per transfer function change. In this paper, we demonstrate a technique for subdividing the volume intensity range into partitions and deriving what we call partitioned distance maps. These can be used to accelerate the distance map computation for a newly changed transfer function by a factor up to 30. This allows the currently fastest known empty space skipping approach to be used while maintaining high frame rates even when the transfer function is changed frequently.
Paper Structure (10 sections, 1 equation, 9 figures, 1 table)

This paper contains 10 sections, 1 equation, 9 figures, 1 table.

Figures (9)

  • Figure 1: Our method demonstrated for a simplified 2D case (without block-reducing): 1 row from left to right: input intensity map I, occupancy and corresponding distance map (small squares contain occupancy values) after applying TFA resp. TFB, $D'$ derived from the PDMs ($D' = D'_{\mathrm{TF}_A} = D'_{\mathrm{TF}_B}$ in this example), 2 row: the POMs and PDMs using partitions with intensity ranges $[0,1]$, $[2,3]$, $[4,5]$, and $[6,7]$; TFs' intensities to alpha mappings ($\cancel{0}\ldots$ non-zero alpha): $\mathrm{TF}_A(0,\ldots,7) = \left\{0,0,\cancel{0},\cancel{0},0,0,\cancel{0},\cancel{0}\right\}$, $\mathrm{TF}_B(0,\ldots,7) = \left\{0,0,0,\cancel{0},0,0,\cancel{0},\cancel{0}\right\}$ and thus, $S = \left\{2,4\right\}$ for both.
  • Figure 2: TF1
  • Figure 3: TF2
  • Figure 4: TF3
  • Figure 5: TF4
  • ...and 4 more figures