Skip to content

Commit 6290b26

Browse files
committed
Merge pull request #470 from vinouz/patch-1
Changed gaussian kernel coefficients so that total is 1.0f (was 0.9999999f)
2 parents 40ba27c + ef85792 commit 6290b26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/depth_packet_processor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ DepthPacketProcessor::Parameters::Parameters()
6161
gaussian_kernel[1] = 0.1131098f;
6262
gaussian_kernel[2] = 0.1069973f;
6363
gaussian_kernel[3] = 0.1131098f;
64-
gaussian_kernel[4] = 0.1195715f;
64+
gaussian_kernel[4] = 0.1195716f;
6565
gaussian_kernel[5] = 0.1131098f;
6666
gaussian_kernel[6] = 0.1069973f;
6767
gaussian_kernel[7] = 0.1131098f;

0 commit comments

Comments
 (0)