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

feature : offset

parent 10b5c0a2
No related branches found
No related tags found
2 merge requests!47Feature : Multi-channel and Binning,!41Resolve "Consider rescaling (binning) large images"
......@@ -34,13 +34,16 @@ public class ProjectionParameters
{
private final int delta;
private final int offset;
private final String projectionMethod;
public ProjectionParameters( int delta, String projectionMethod ) throws DataValidationException
public ProjectionParameters( int delta, int offset, String projectionMethod )
{
projectionParametersValidationCheck( delta, projectionMethod );
this.delta = delta;
this.offset = delta;
this.projectionMethod = projectionMethod;
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment