fix smooth distance

This commit is contained in:
JamesEMcclure
2020-07-22 13:14:07 -04:00
parent 418ba77751
commit c9640c46ba
4 changed files with 8 additions and 10 deletions

View File

@@ -2,15 +2,11 @@
#include "math.h"
#include "ProfilerApp.h"
void Mean3D( const Array<float> &Input, Array<float> &Output )
void Mean3D( const Array<double> &Input, Array<double> &Output )
{
PROFILE_START("Mean3D");
// Perform a 3D Mean filter on Input array
int i,j,k,ii,jj,kk;
int imin,jmin,kmin,imax,jmax,kmax;
float *List;
List=new float[27];
int i,j,k;
int Nx = int(Input.size(0));
int Ny = int(Input.size(1));