Giter Club home page Giter Club logo

voxel-compression-docs's Introduction

voxel-compression-docs

Documentation accompanying my research project at TU Dresden. This documentation is designed to be viewed using GitHub pages. View the Documentation here

Getting Started

cd docs
python3 -m http.server 8000

voxel-compression-docs's People

Contributors

eisenwave avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar

Forkers

skyne98

voxel-compression-docs's Issues

Bounds check calculation assessment

I've got a remark/question regarding this code:

```cpp
uint32_t abs_svo(int32_t n)
{
return n < 0 ? (-n -1) : n;
}
bool comp_against_svo_bounds(int32_t x, int32_t y, int32_t z, uint32_t d)
{
return (abs_svo(x) | abs_svo(y) | abs_svo(z)) >= d;
}
```

This should yield the same result as max(abs(x), abs(y), abs(z)) > d as referenced in:

To check whether a point lies within our SVO, $max(abs(x), abs(y), abs(z)) > d$ would suffice.

However I don't think this is the case.

Take for example d = 10 and a coordinate of x = 9, y = 7 and z = 0.

The result of max(abs(9), abs(7), abs(0)) is 9, which is smaller than d (= 10).

However, the result of 9 | 7 | 0 is 15, which is not smaller than d.

These calculations are therefore not equal. Maybe you meant to write something diffently here? Or is my assessment wrong?

Hope to hear from you,
Jomy

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.