bvh

module
v0.0.0-...-a1b8f2b Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Mar 20, 2021 License: Apache-2.0

README

Online Bounding Volume Hierarchy

Intro

This code (hereby called onlineBVH) is a golang implementation of a binary self-balancing Bounding Volume Hierarchy (BVH) inspired by the tree rotations in Fast, Effective BVH Updates for Animated Scenes. The hierarchies created via this algorithm have the following properties for n volumes (defined by orthotopes) of any integer dimension (greater than 0):

  • Average log(n) addition/insertion time.
  • Average log(n) removal time.
  • Average mlog(n) query time where m is the number of volumes found.

Example Use Cases:

  • Collisions between objects in a game or for ray tracing.
  • Dynamically updating n-dimentional vectors (e.g. word-vectors).
How it Works

The algorithm uses integers (personal preference) to define the points of volumes. Queries are thread-safe; however, additions and removals are not. The animations below show the algorithm in action (they are pixelated, save them and look at them on your computer to get rid of the blur):

Adding volumes Removing volumes #1 Removing volumes #2
Animated steps of showing addition of volumes to the BVH Animated steps of showing removal of volumes to the BVH Animated steps of showing an alernative removal of volumes to the BVH

Here's an example of how to use the code:

import "github.com/briannoyama/bvh/rect"

// Change the DIMENSIONS constant in orthotope.go for your use case.
orth := &rect.Orthotope{Point: [2]int{10, -20}, Delta: [2]int{30, 30}}
bvol := &rect.BVol{}
bvol.Add(orth)
bvol.Remove(orth)

// Use an iterator to reduce the amount of Garbage Collection
iter := bvol.Iterator()
iter.Add(orth)

q := &rect.Orthotope{Point: [2]int{10, -10}, Delta: [2]int{20, 20}}
for r := iter.Query(q); r != nil; r = iter.Query(q) {
    // Do something with each orthotope r
}

iter.Remove(orth)

To ensure log(n) access along with close to ideal performance, the algorithm swaps child nodes within the BVH tree both to balance the tree and to reduce the Surface Area of the generated bounding volumes. Below, one can see the output of onlineBVH vs an offline algorithm (hereby offlineBVH) that attempts to create "ideal" binary BVHs. The offline algorithm tries to create an ideal tree by sorting all of the volumes in each of their dimensions and comparing the surface areas of half the volumes at a time. Rinse and repeat recursively. This takes O(dnlog2(n)) for the offline method compared to the O(nlog(n)) time for the online method. (I'm not presenting a formal proof of big O. There may be a tighter big O bound, but that should be close enough.) In short, the offline method takes way more time to construct.

Online BVH Offline BVH
Output of online algorithm for generating BVH Output of offline algorithm for generating BVH
Performance Test

For those who plan to use onlineBVH for an application with strict runtime requirements, I conducted a small experiment on my Intel Core i5-7440HQ CPU @ 2.80GHz × 4. The test generated random cubes in a 3D space to add (100,000) remove (50,000) and query (100,000) such that the final BVH would contain 50,000 items. I ran this test 20 times and combined the data to get the below graphs:

The different colored lines represent the different percentiles. Interestingly, the first addition took way longer than any of the following additions. The rest of the additions hovered around 0.01 ms. The per size graph had a lot of noise, most likely because I did not run enough tests =P. Instead of running more tests (perhaps like I should have), I did a moving window average of 100 points before and average each point plotted in the graph above (and it still had a lot of noise). The large number of branches (if-statements) in the code may explain some of the observed variance.

Speed of adding an object per depth Speed of adding an object per number of volumes

Subtractions worked closer to what I expected. The performance seems to increase linearly. It takes approximately 100 times as long to remove an item after 50,000 volumes have been added versus removing an item when there's only one in the hierarchy. (Note, since the BVH is also a binary tree, there are log2(50,000) parent volumes.) Other than height, the runtime performance also depends on the surface area of the volumes. The surface area is a good metric for the odds that a random query (or subtraction) volume will have to search multiple paths in the tree. It may also explain why we do not have log performance.

Speed of removing an object per number of volumes Speed of removing an object per depth

Due to the random nature of the test, there does not exist data for smaller BVHs with smaller depths for all of the possible return values. (Query 2 means two volumes were returned or intersected by the query volume.) The query speed seems to mirror the subtraction speed. After a depth of ~10 the speed of both subtraction and query is slower than that for add (~0.01 ms). Surprisingly, the number of volumes affected seemed to have very little affect on the performance. This is likely because the query method does not have to recurse back to the root of the tree to find more things to return.

Speed of querying an object per depth Speed of querying an object per number of volumes

As mentioned, there are two things that should (in theory) determine the performance of a BVH. One is the depth of the tree, and the other is the surface area of the tree. The different sizes of the parent volumes affects the total surface area. This test only relied on additions for the online method. The offline represents an approximate best possible tree.

Depth of the online vs offline algorithms Surface area of the online vs offline algorithms

As one can see, the offline tree does not create as good of a tree (which we expect), but! It is close, and it grows at a linear rate, similar to the best case tree. For this study we ended at around 32000 added volumes due to the time it took to create an offline tree. For applications where some of the data can be preprocessed online, one can use the offline method to construct an initial hierarchy.

A few thoughts about the performance: There are a large number of relatively small method calls that are not likely inlined (which ones? I leave this as an activity for the reader). Currently for moving an existing volume, one needs to do a removal followed by an addition. The results from the query study suggests that for volumes that only need to be moved a small amount, it may be possible to make a better movement method that would take approximately half the time.

I did not do studies for the memory usage, though one can probably get a good estimate from looking at the code (fairly minimal). If one has questions, feel free to email me.

*This is not an officially supported Google product.

Directories

Path Synopsis
Package discreet contains convenience operations for working with integers.
Package discreet contains convenience operations for working with integers.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL