Skip to content
Snippets Groups Projects
Commit 4a7502bf authored by Céline  TREBEAU's avatar Céline TREBEAU
Browse files

Refactor

parent 937686ea
No related branches found
No related tags found
1 merge request!41Resolve "Consider rescaling (binning) large images"
......@@ -84,7 +84,6 @@ public class Unbinning< T extends RealType< T > & NativeType< T > >
LOGGER.debug( "Process completed in {}s" , (endTime-startTime)/1000);
}
/**
*
* @param X the starting x value
......@@ -115,7 +114,7 @@ public class Unbinning< T extends RealType< T > & NativeType< T > >
ImageJFunctions.show( kernel, "original" );
double time1 = System.currentTimeMillis();
int bin = 4;
Img< UnsignedByteType > output = Binning.binning( kernel, bin );
Img< UnsignedByteType > output = Binning.run( kernel, bin );
double time2 = System.currentTimeMillis();
LOGGER.debug( "Multithreading time = {}s", ( time2 - time1 ) / 1000 );
assert output != null;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment