Skip to content

Commit

Permalink
Merge branch 'master' of github.com:DGtal-team/DGtal into masterDGtal
Browse files Browse the repository at this point in the history
  • Loading branch information
dcoeurjo committed Feb 22, 2013
2 parents 8ce1b5b + cef7b98 commit bb8f0e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Expand Up @@ -180,8 +180,8 @@ DGtal::IntegralInvariantGaussianCurvatureEstimator<TKSpace, TShapeFunctor, 3>::i
double h2 = h * h;
dh5 = h2 * h2 * h;

RealPoint pOrigin = RealPoint ( 0.0, 0.0, 0.0 + 0.000123 );
KernelSupport kernel( pOrigin, radius );
RealPoint pOrigin = RealPoint ( 0.0, 0.0, 0.0 );
KernelSupport kernel( pOrigin, radius + 0.000123 );
KSpace KSpaceKernel;

kernels = std::vector< SurfelSet >( 27 );
Expand Down
Expand Up @@ -89,7 +89,7 @@ DGtal::IntegralInvariantMeanCurvatureEstimator<TKSpace, TShapeFunctor, 2>::init
d1_r2 = 1.0 / ( radius * radius );

RealPoint pOrigin = RealPoint ( 0.0, 0.0 );
KernelSupport kernel( pOrigin, radius );
KernelSupport kernel( pOrigin, radius + 0.000123 );
KSpace KSpaceKernel;

kernels = std::vector< SurfelSet > ( 9 );
Expand Down Expand Up @@ -180,7 +180,7 @@ DGtal::IntegralInvariantMeanCurvatureEstimator<TKSpace, TShapeFunctor, 3>::init
d_4_PIr4 = 4.0 / ( M_PI * r2 * r2 );

RealPoint pOrigin = RealPoint ( 0.0, 0.0, 0.0 );
KernelSupport kernel( pOrigin, radius );
KernelSupport kernel( pOrigin, radius + 0.000123 );
KSpace KSpaceKernel;

kernels = std::vector< SurfelSet >( 27 );
Expand Down

0 comments on commit bb8f0e1

Please sign in to comment.