From c1996e6cffe10ba0de541693cb78cbb232b660c1 Mon Sep 17 00:00:00 2001 From: mkazhdan Date: Mon, 12 Oct 2015 13:23:36 -0400 Subject: [PATCH] Reverting to Degree 2 for normal field --- README.md | 2 -- Src/MultiGridOctreeData.h | 2 +- 2 files changed, 1 insertion(+), 3 deletions(-) diff --git a/README.md b/README.md index c0b602c..e52dac6 100644 --- a/README.md +++ b/README.md @@ -344,8 +344,6 @@ If higher order degrees are desired, additional template parameters can be easil Similarly, to reduce compilation times, support for specific degrees can be removed.)
  • Added the --primalVoxel flag to support to extraction of a voxel grid using primal sampling.
  • Changed the implementation of the voxel sampling so that computation is now linear, rather than log-linear, in the number of samples. -
  • Changed the realization of the normal/vector field to use a more compactly supported basis. This gives rise to a smaller system (using less memory and providing a faster solver). Earlier results can be obtained - by setting:
    #define NORMAL_DEGREE 2
    in the file MultiGridOctreeData.h.
    diff --git a/Src/MultiGridOctreeData.h b/Src/MultiGridOctreeData.h index 983dd9c..1f53f02 100644 --- a/Src/MultiGridOctreeData.h +++ b/Src/MultiGridOctreeData.h @@ -46,7 +46,7 @@ DAMAGE. #define DATA_DEGREE 1 // The order of the B-Spline used to splat in data for color interpolation #define WEIGHT_DEGREE 2 // The order of the B-Spline used to splat in the weights for density estimation -#define NORMAL_DEGREE 1 // The order of the B-Spline used to splat int the normals for constructing the Laplacian constraints +#define NORMAL_DEGREE 2 // The order of the B-Spline used to splat int the normals for constructing the Laplacian constraints //#define MAX_MEMORY_GB 15 #define MAX_MEMORY_GB 0