Michael Strecke

Results 4 issues of Michael Strecke

The numbers for creating the inplane rotations are clearly given in degrees, but the code for creating the rotation matrix expects radians. This PR adds a conversion to fix this....

Creating a dummy texture for textureless meshes the way it is done so far causes illegal memory accesses if `num_vertices * num_views > 1920 * 1080`. To avoid this, this...

The poses from the sampling function are flattened before they are padded to match the number of batches. This PR moves the flattening after the padding to avoid illegal memory...

Fixes a race condition discovered by the compute sanitizer. The writer threads might enter the next loop iteration before all reader threads have read their values. Adding `__syncthreads()` to avoid...