Skip to content
Snippets Groups Projects
Commit 5fb92ac2 authored by Nicolas Pope's avatar Nicolas Pope
Browse files

Dont clamp truncation values

parent 47fe9d4a
No related branches found
No related tags found
No related merge requests found
......@@ -544,11 +544,11 @@ __global__ void integrateDepthMapKernel(HashData hashData, DepthCameraData camer
}*/
if (sdf > -truncation) // && depthZeroOne >= 0.0f && depthZeroOne <= 1.0f) //check if in truncation range should already be made in depth map computation
{
if (sdf >= 0.0f) {
/*if (sdf >= 0.0f) {
sdf = fminf(truncation, sdf);
} else {
sdf = fmaxf(-truncation, sdf);
}
}*/
//printf("SDF: %f\n", sdf);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment