-
Notifications
You must be signed in to change notification settings - Fork 37
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduced an abstraction layer for all N5 dataset parameters, this a…
…llows us to directly use the N5ImageLoader for example for reading OME-ZARR based datasets
- Loading branch information
1 parent
4d308f7
commit 57ffec4
Showing
3 changed files
with
59 additions
and
11 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
package bdv.img.n5; | ||
|
||
import org.janelia.saalfeldlab.n5.DataType; | ||
import org.janelia.saalfeldlab.n5.N5Reader; | ||
|
||
public interface N5Properties | ||
{ | ||
public DataType getDataType( final N5Reader n5, final int setupId ); | ||
public double[][] getMipmapResolutions( final N5Reader n5, final int setupId ); | ||
public String getPath( final int setupId ); | ||
public String getPath( final int setupId, final int timepointId ); | ||
public String getPath( final int setupId, final int timepointId, final int level ); | ||
} |