xtiff icon indicating copy to clipboard operation
xtiff copied to clipboard

A tiny Python library for writing multi-channel TIFF stacks.

Results 3 xtiff issues
Sort by recently updated
recently updated
newest added

updates: - [github.com/pre-commit/pre-commit-hooks: v4.5.0 → v4.6.0](https://github.com/pre-commit/pre-commit-hooks/compare/v4.5.0...v4.6.0) - [github.com/PyCQA/autoflake: v2.2.1 → v2.3.1](https://github.com/PyCQA/autoflake/compare/v2.2.1...v2.3.1) - [github.com/psf/black: 23.12.1 → 24.4.0](https://github.com/psf/black/compare/23.12.1...24.4.0) - [github.com/pre-commit/mirrors-mypy: v1.8.0 → v1.9.0](https://github.com/pre-commit/mirrors-mypy/compare/v1.8.0...v1.9.0)

Hello, I like this package as it's easy to install and use, however I have a question regarding the compression setting, specifically the compression type. ``` compression_type=None ``` What to...

``` import numpy as np from xtiff import to_tiff def test_to_tiff(tmp_path): path = tmp_path + "test.ome.tiff" num_channels = 10 img = np.zeros((1, 1, num_channels, 200, 200, 1)) channel_names = [f"Channel...