Skip to content
Snippets Groups Projects
Commit de8359bd authored by Tobias Pietzsch's avatar Tobias Pietzsch
Browse files

Propose larger chunk sizes (64*64*64 elements) for N5 export

parent 8ec03317
No related branches found
No related tags found
No related merge requests found
......@@ -117,7 +117,10 @@ public class ExportImagePlusAsN5PlugIn implements Command
final FinalDimensions size = new FinalDimensions( w, h, d );
// propose reasonable mipmap settings
final ExportMipmapInfo autoMipmapSettings = ProposeMipmaps.proposeMipmaps( new BasicViewSetup( 0, "", size, voxelSize ) );
final int maxNumElements = 64 * 64 * 64;
final ExportMipmapInfo autoMipmapSettings = ProposeMipmaps.proposeMipmaps(
new BasicViewSetup( 0, "", size, voxelSize ),
maxNumElements );
// show dialog to get output paths, resolutions, subdivisions, min-max option
final Parameters params = getParameters( autoMipmapSettings );
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment