├── .github └── workflows │ ├── build.yml │ └── environment.yaml ├── .gitignore ├── LICENSE ├── README.md ├── conda-recipe └── meta.yaml ├── data ├── example.h5 ├── example.tif └── example.xml ├── examples ├── dask_array.py └── on_the_fly.py ├── pybdv ├── __init__.py ├── __version__.py ├── bdv_datasets.py ├── converter.py ├── downsample.py ├── dtypes.py ├── metadata.py ├── scripts │ ├── __init__.py │ └── pybdv_converter.py ├── transformations.py └── util.py ├── setup.py └── test ├── test_bdv_datasets.py ├── test_convert_to_bdv.py ├── test_downsample.py ├── test_external.py ├── test_make_bdv.py ├── test_metadata.py └── test_util.py /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/environment.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/.github/workflows/environment.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/README.md -------------------------------------------------------------------------------- /conda-recipe/meta.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/conda-recipe/meta.yaml -------------------------------------------------------------------------------- /data/example.h5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/data/example.h5 -------------------------------------------------------------------------------- /data/example.tif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/data/example.tif -------------------------------------------------------------------------------- /data/example.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/data/example.xml -------------------------------------------------------------------------------- /examples/dask_array.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/examples/dask_array.py -------------------------------------------------------------------------------- /examples/on_the_fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/examples/on_the_fly.py -------------------------------------------------------------------------------- /pybdv/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/__init__.py -------------------------------------------------------------------------------- /pybdv/__version__.py: -------------------------------------------------------------------------------- 1 | __version__ = "0.5.4" 2 | -------------------------------------------------------------------------------- /pybdv/bdv_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/bdv_datasets.py -------------------------------------------------------------------------------- /pybdv/converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/converter.py -------------------------------------------------------------------------------- /pybdv/downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/downsample.py -------------------------------------------------------------------------------- /pybdv/dtypes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/dtypes.py -------------------------------------------------------------------------------- /pybdv/metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/metadata.py -------------------------------------------------------------------------------- /pybdv/scripts/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pybdv/scripts/pybdv_converter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/scripts/pybdv_converter.py -------------------------------------------------------------------------------- /pybdv/transformations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/transformations.py -------------------------------------------------------------------------------- /pybdv/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/pybdv/util.py -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/setup.py -------------------------------------------------------------------------------- /test/test_bdv_datasets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_bdv_datasets.py -------------------------------------------------------------------------------- /test/test_convert_to_bdv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_convert_to_bdv.py -------------------------------------------------------------------------------- /test/test_downsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_downsample.py -------------------------------------------------------------------------------- /test/test_external.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_external.py -------------------------------------------------------------------------------- /test/test_make_bdv.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_make_bdv.py -------------------------------------------------------------------------------- /test/test_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_metadata.py -------------------------------------------------------------------------------- /test/test_util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/constantinpape/pybdv/HEAD/test/test_util.py --------------------------------------------------------------------------------