-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Downsampling with the dataset api (#259)
* WIP: implment downsampling with dataset API * wip: implement downsampling for tiff * wip: use logging in downsampling * remove debugging method * WIP: restructure downsampling by introducing for_zipped_chunks * refactor to_wk_ds and to_tiff_ds to copy_ds * refactor padding for downsampling * remove old downsampling * reformat code * add datasource-properties for WT1_wkw * fix downsampling tests * implement some PR feedback * modify padding tests and modify signature of downsampling * update properties instead of padding data for downsampling * allow chunks to be not bounded to support compressed data * reformat code * fix compression bug * assert correct target_chunk_size * add tests for invalid chunk sizes * add read_only flag to Views
- Loading branch information
1 parent
3634494
commit 02d5771
Showing
14 changed files
with
1,348 additions
and
672 deletions.
There are no files selected for viewing
Binary file not shown.
Large diffs are not rendered by default.
Oops, something went wrong.
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
from .cubing import cubing | ||
from .downsampling import downsample_mag | ||
from .downsampling import downsample_mags | ||
from .compress import compress_mag | ||
from .metadata import write_webknossos_metadata |
Oops, something went wrong.