Reduced Z-buffer for 3D Occlusion Culling

Resolve Bottlenecks,
Find Innovative Solutions
Generate Solutions

Solution Overview

Problem

The Z-buffer method in computer graphics requires significant memory and processing resources for hidden surface removal, especially with complex 3D scenes, due to its need for per-pixel depth values and high computation costs, which are exacerbated by the complexity of positional relationships between numerous objects.

Innovation Solution

A reduced Z-buffer method that uses representative Z values for pixel blocks, comparing these values with per-pixel Z values to determine rendering possibilities, and updating them based on the farthest Z value from the viewpoint, allowing for efficient occlusion culling and hidden surface removal by using external and internal volumes to assess rendering targets.

Engineering Contradictions & Design Principles

VSEngineering Contradiction Analysis

1Measurement precision

If a full-resolution Z-buffer is used for hidden surface removal, then rendering accuracy is improved, but memory usage and processing cost increase significantly

Engineering Contradiction:
Improvedepth value precisionVSAvoidmemory capacity
Core Design Contradiction:
Measurement precisionVSQuantity of substance

Solution Approach 1:

The patent divides the screen into multiple pixel blocks and creates a reduced Z-buffer with one representative depth value per block instead of one per pixel. This segmentation approach reduces memory usage from storing N depth values (where N is total pixel count) to storing N/B depth values (where B is number of pixels per block), while still providing sufficient depth information for occlusion culling decisions.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The patent uses a reduced Z-buffer that stores only partial depth information (one value per pixel block rather than per pixel) to perform occlusion culling. This partial action is sufficient for determining whether objects are hidden behind others, eliminating the need for full-resolution depth data in many cases, thus reducing memory and processing requirements.

Inventive Principle:
Principle #16Partial or excessive action

2Measurement precision

If per-pixel Z value comparison is performed for every pixel, then hidden surface removal accuracy is improved, but processing cost increases

Engineering Contradiction:
Improvehidden surface detection accuracyVSAvoidrendering efficiency
Core Design Contradiction:
Measurement precisionVSProductivity

Solution Approach 1:

The patent segments the pixel processing into pixel-block level operations for the reduced Z-buffer. Instead of comparing each pixel's depth value individually against the full Z-buffer, the system compares pixel blocks against the reduced Z-buffer, reducing the number of comparisons from N to N/B where B is pixels per block.

Inventive Principle:
Principle #1Segmentation

Solution Approach 2:

The patent performs depth comparison at a coarser resolution (pixel block level) rather than full pixel level for the reduced Z-buffer. This partial comparison approach is sufficient for occlusion culling purposes, allowing the system to skip rendering entire pixel blocks when they are determined to be hidden, thus improving rendering efficiency without sacrificing visible quality.

Inventive Principle:
Principle #16Partial or excessive action

3Productivity

If occlusion culling is performed using bounding volumes, then rendering efficiency is improved, but computational complexity increases with numerous objects

Engineering Contradiction:
Improverendering efficiencyVSAvoidcomputation complexity
Core Design Contradiction:
ProductivityVSDevice complexity

Solution Approach 1:

The patent creates a simplified copy of the depth buffer at reduced resolution (one value per pixel block) that can be quickly queried for occlusion testing. This reduced Z-buffer copy provides sufficient information for bounding volume occlusion culling without requiring complex per-pixel depth calculations, reducing computational complexity while maintaining rendering efficiency.

Inventive Principle:
Principle #26Copying

Data Source

PatentUS7812837B2Reduced Z-buffer generating method, hidden surface removal method and occlusion culling method
Publication Date: 2010.10.12 SONY INTERACTIVE ENTERTAINMENT LLC
  • US7812837B2 patent drawing
  • US7812837B2 patent drawing
  • US7812837B2 patent drawing

AI summary

A rendering processing apparatus is provided which performs occlusion culling for excluding from rendering targets a hidden object behind another object as seen from a point of view, when given a plurality of objects. An object input unit stores a plurality of objects in an object storing unit. An internal volume generating unit generates an internal volume which is included in a target object. A reduced Z-buffer updating unit updates a reduced Z-buffer based on the internal volume. An external volume generating unit generates an external volume which includes the target object subject to culling test. A culling determination unit consults the reduced Z-buffer and performs a Z culling test on the target object based on the external volume.