diff --git a/applications/reconstruct/src/scene_rep_hash_sdf.cu b/applications/reconstruct/src/scene_rep_hash_sdf.cu index f0739409e1168eea919eb2d0b9f57c6396577c17..6a3cd2bed083cb68e8186c015a55b6b6a4563aca 100644 --- a/applications/reconstruct/src/scene_rep_hash_sdf.cu +++ b/applications/reconstruct/src/scene_rep_hash_sdf.cu @@ -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);