1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472
|
""" Test tifffile plugin functionality.
"""
import datetime
import numpy as np
import pytest
import io
from copy import deepcopy
import struct
import imageio.v3 as iio
from imageio.config import known_plugins, known_extensions
tifffile = pytest.importorskip("tifffile", reason="TiffFile is not installed")
@pytest.fixture(scope="module", autouse=True)
def use_tifffile_v3():
plugin_name = "tifffile"
all_plugins = known_plugins.copy()
all_extensions = known_extensions.copy()
known_plugins.clear()
known_extensions.clear()
known_plugins[plugin_name] = all_plugins[plugin_name]
for extension, configs in all_extensions.items():
for config in configs:
for plugin in config.priority:
if plugin == plugin_name:
copied_config = deepcopy(config)
copied_config.priority = [plugin_name]
copied_config.default_priority = [plugin_name]
known_extensions[extension] = [copied_config]
yield
known_plugins.update(all_plugins)
known_extensions.update(all_extensions)
def test_basic_roundtrip(tmp_path):
filename = tmp_path / "test.tiff"
expected = np.ones((10, 10, 3), np.uint8) * 2
iio.imwrite(filename, expected)
actual = iio.imread(filename)
np.testing.assert_allclose(actual, expected)
def test_multiple_images_roundtrip(tmp_path):
filename = tmp_path / "test.tiff"
expected = np.ones((10, 10, 3), np.uint8) * 2
iio.imwrite(filename, [expected] * 3, is_batch=True)
# read all series as batch
actual = iio.imread(filename, index=...)
assert actual.shape == (3, 10, 10, 3)
# read each series individually
for idx in range(3):
actual = iio.imread(filename, index=idx)
np.testing.assert_allclose(actual, expected)
def test_volume_roundtrip(tmp_path):
filename = tmp_path / "test.tiff"
expected = np.ones((3, 10, 10, 3), np.uint8) * 2
iio.imwrite(filename, expected)
actual = iio.imread(filename)
np.testing.assert_allclose(actual, expected)
def test_channel_first_volume(test_images, tmp_path):
# remote channel-first volume rgb (2, 3, 10, 10)
filename = test_images / "multipage_rgb.tif"
img = iio.imread(filename)
assert img.shape == (2, 3, 10, 10)
def test_planarconfig(tmp_path):
filename = tmp_path / "test.tiff"
expected = np.ones((3, 10, 10), np.uint8) * 2
iio.imwrite(filename, expected, planarconfig="SEPARATE")
# assert planar config
with tifffile.TiffFile(filename) as tif:
if tuple(int(x) for x in tifffile.__version__.split(".")) <= (2021, 11, 2):
assert tif.series[0].pages[0].tags[284].value == 2
else:
assert tif.series[0].dims == ("sample", "height", "width")
def test_metadata_reading(test_images):
filename = test_images / "multipage_rgb.tif"
file_metadata = iio.immeta(filename)
assert file_metadata["is_imagej"] is False
assert file_metadata["is_shaped"] is True
page_metadata = iio.immeta(filename, index=0)
assert page_metadata["description"] == "shape=(2,3,10,10)"
assert page_metadata["description1"] == ""
assert page_metadata["datetime"] == datetime.datetime(2015, 5, 9, 9, 8, 29)
assert page_metadata["software"] == "tifffile.py"
def test_metadata_writing(tmp_path):
filename = tmp_path / "test.tiff"
dt = datetime.datetime(2018, 8, 6, 15, 35, 5)
with iio.imopen(filename, "w") as file:
file.write(
np.zeros((10, 10)),
software="testsoftware",
description="test desc",
datetime=dt,
)
file.write(np.zeros((10, 10)), description="another desc")
page1_md = iio.immeta(filename, index=0)
assert page1_md["datetime"] == dt
assert page1_md["software"] == "testsoftware"
assert page1_md["description"] == "test desc"
page2_md = iio.immeta(filename, index=1)
assert page2_md["description"] == "another desc"
def test_imagej_hyperstack(tmp_path):
filename = tmp_path / "hyperstack.tiff"
with iio.imopen(filename, "w", imagej=True) as file:
file.write(np.zeros((15, 2, 180, 183), dtype=np.uint8))
# test ImageIO plugin
img = iio.imread(filename)
assert img.shape == (15, 2, 180, 183)
metadata = iio.immeta(filename)
assert metadata["is_imagej"] is True
@pytest.mark.parametrize(
"dpi,expected_resolution",
[
((0, 1), (0, 1)),
((0, 12), (0, 12)),
((100, 200), (100, 200)),
((0.5, 0.5), (0.5, 0.5)),
(((1, 3), (1, 3)), (1 / 3, 1 / 3)),
],
)
def test_resolution_metadata(tmp_path, dpi, expected_resolution):
filename = tmp_path / "test.tif"
data = np.zeros((200, 100), dtype=np.uint8)
iio.imwrite(filename, data, resolution=dpi)
page_metadata = iio.immeta(filename, index=0)
assert page_metadata["resolution"] == expected_resolution
assert page_metadata["resolution_unit"] == 2
@pytest.mark.parametrize("resolution", [(1, 0), (0, 0)])
def test_invalid_resolution_metadata(tmp_path, resolution):
tif_path = tmp_path / "test.tif"
data = np.zeros((200, 100), dtype=np.uint8)
iio.imwrite(tif_path, data)
with tifffile.TiffFile(tif_path, mode="r+b") as tif:
tags = tif.pages[0].tags
tags["XResolution"].overwrite(resolution)
tags["YResolution"].overwrite(resolution)
with pytest.warns(RuntimeWarning):
read_image = iio.immeta(tmp_path / "test.tif", index=0)
assert read_image["XResolution"] == resolution
assert read_image["YResolution"] == resolution
assert "resolution" not in read_image
def test_missing_resolution_metadata(tmp_path):
tif_path = tmp_path / "test.tif"
data = np.zeros((200, 100), dtype=np.uint8)
iio.imwrite(tif_path, data)
with tifffile.TiffFile(tif_path, mode="r+b") as tif:
tags = tif.pages[0].tags
xres = tags["XResolution"]
tags["YResolution"].overwrite((10, 11))
with tif_path.open("r+b") as f:
# give XResolution tag another ID so it won't be recognized
f.seek(xres.offset)
f.write(struct.pack("<H", 65000))
read_image = iio.immeta(tif_path, index=0)
assert "XResolution" not in read_image
assert read_image["YResolution"] == (10, 11)
assert "resolution" not in read_image
assert read_image["resolution_unit"] == 1
tif_path2 = tmp_path / "test2.tif"
data2 = np.zeros((200, 100), dtype=np.uint8)
iio.imwrite(tif_path2, data2)
with tifffile.TiffFile(tif_path2, mode="r+b") as tif:
tags = tif.pages[0].tags
res_u = tags["ResolutionUnit"]
with tif_path2.open("r+b") as f:
# give ResolutionUnit tag another ID so it won't be recognized
f.seek(res_u.offset)
f.write(struct.pack("<H", 65000))
read_image2 = iio.immeta(tif_path2, index=0)
assert "ResolutionUnit" not in read_image2
assert "resolution" not in read_image2
assert "resolution_unit" not in read_image2
def test_read_bytes():
# regression test for: https://github.com/imageio/imageio/issues/703
some_bytes = iio.imwrite("<bytes>", [[0]])
assert some_bytes is not None
def test_tiff_page_writing():
# regression test for
# https://github.com/imageio/imageio/issues/849
base_image = np.full((256, 256, 3), 42, dtype=np.uint8)
buffer = io.BytesIO()
iio.imwrite(buffer, base_image, extension=".tiff")
buffer.seek(0)
with tifffile.TiffFile(buffer) as file:
assert len(file.pages) == 1
def test_bool_writing():
# regression test for
# https://github.com/imageio/imageio/issues/852
expected = (np.arange(255 * 123) % 2 == 0).reshape((255, 123))
img_bytes = iio.imwrite("<bytes>", expected, extension=".tiff")
actual = iio.imread(img_bytes)
assert np.allclose(actual, expected)
def test_roundtrip(tmp_path):
# regression test for
# https://github.com/imageio/imageio/issues/854
iio.imwrite(tmp_path / "test.tiff", np.ones((10, 64, 64), "u4"))
actual = iio.imread(tmp_path / "test.tiff")
assert actual.shape == (10, 64, 64)
def test_volume_roudtrip(tmp_path):
# regression test for
# https://github.com/imageio/imageio/issues/818
expected_volume = np.full((23, 123, 456, 3), 42, dtype=np.uint8)
iio.imwrite(tmp_path / "volume.tiff", expected_volume)
# assert that the file indeed contains a volume
with tifffile.TiffFile(tmp_path / "volume.tiff") as file:
assert file.series[0].shape == (23, 123, 456, 3)
assert len(file.series) == 1
actual_volume = iio.imread(tmp_path / "volume.tiff")
assert np.allclose(actual_volume, expected_volume)
def test_multipage_read(tmp_path):
# regression test for
# https://github.com/imageio/imageio/issues/818
filename = tmp_path / "flat.tiff"
# this creates a TIFF with two flat images (non-volumetric)
expected_flat = np.full((35, 73, 3), 114, dtype=np.uint8)
iio.imwrite(filename, [expected_flat, expected_flat], is_batch=True)
actual_flat = iio.imread(filename)
assert np.allclose(actual_flat, expected_flat)
for idx, series in enumerate(iio.imiter(filename)):
assert np.allclose(series, expected_flat)
assert idx == 1
def test_multiple_ndimages(tmp_path):
# regression test for
# https://github.com/imageio/imageio/issues/81
filename = tmp_path / "nightmare.tiff"
volumetric = np.full((4, 255, 255, 3), 114, dtype=np.uint8)
flat = np.full((255, 255, 3), 114, dtype=np.uint8)
different_shape = np.full((120, 73, 3), 114, dtype=np.uint8)
with iio.imopen(filename, "w") as file:
file.write(volumetric)
file.write(flat)
file.write(different_shape)
# imread will read the respective series when using series kwarg
assert iio.imread(filename, index=0).shape == (4, 255, 255, 3)
assert iio.imread(filename, index=1).shape == (255, 255, 3)
assert iio.imread(filename, index=2).shape == (120, 73, 3)
# imread will read the respective plane when using index kwarg
assert iio.imread(filename, index=..., page=0).shape == (255, 255, 3)
assert iio.imread(filename, index=..., page=1).shape == (255, 255, 3)
assert iio.imread(filename, index=..., page=2).shape == (255, 255, 3)
assert iio.imread(filename, index=..., page=3).shape == (255, 255, 3)
assert iio.imread(filename, index=..., page=4).shape == (255, 255, 3)
assert iio.imread(filename, index=..., page=5).shape == (120, 73, 3)
# imiter will yield the three images in order
shapes = [(4, 255, 255, 3), (255, 255, 3), (120, 73, 3)]
for image, shape in zip(iio.imiter(filename), shapes):
assert image.shape == shape
# iter pages will yield pages in order
shapes = [
(255, 255, 3),
(255, 255, 3),
(255, 255, 3),
(255, 255, 3),
(255, 255, 3),
(120, 73, 3),
]
with iio.imopen(filename, "r") as file:
for image, shape in zip(file.iter_pages(), shapes):
assert image.shape == shape
def test_compression(tmp_path):
img = np.ones((128, 128))
iio.imwrite(tmp_path / "test.tiff", img, compression="zlib")
page_meta = iio.immeta(tmp_path / "test.tiff", index=0)
assert page_meta["compression"] == 8
iio.imwrite(tmp_path / "test2.tiff", img)
page_meta = iio.immeta(tmp_path / "test2.tiff", index=0)
assert page_meta["compression"] == 1
def test_properties(tmp_path, test_images):
filename = tmp_path / "test.tiff"
data = np.full((255, 255, 3), 42, dtype=np.uint8)
iio.imwrite(filename, data)
props = iio.improps(filename)
assert props.shape == (255, 255, 3)
assert props.n_images is None
props = iio.improps(filename, index=...)
assert props.shape == (1, 255, 255, 3)
assert props.n_images == 1
data = np.full((6, 255, 255, 3), 42, dtype=np.uint8)
iio.imwrite(filename, data)
props = iio.improps(filename, page=3)
assert props.shape == (255, 255, 3)
assert props.n_images is None
props = iio.improps(filename, index=...)
assert props.shape == (1, 255, 255, 3)
assert props.n_images == 1
props = iio.improps(filename, index=..., page=...)
assert props.shape == (6, 255, 255, 3)
assert props.n_images == 6
# read file without resolution tags
props = iio.improps(test_images / "multipage_rgb.tif")
assert props.spacing is None
def test_contigous_writing(tmp_path):
filename = tmp_path / "test.tiff"
data = np.full((128, 128, 3), 42, np.uint8)
with tifffile.TiffWriter(filename) as tw:
tw.write(data, contiguous=True)
tw.write(data, contiguous=True)
tw.write(data, contiguous=True)
tw.write(data, contiguous=True)
metadata = iio.immeta(filename)
assert metadata["is_shaped"] is True
assert metadata["shape"] == [4, 128, 128, 3]
def test_unreadable_file():
garbage = b"awdadbj30993urfj"
with pytest.raises(OSError):
iio.imread(garbage)
def test_touch_invalid_kwargs(tmp_path):
filename = tmp_path / "test.tiff"
data = np.full((5, 128, 128, 3), 42, np.uint8)
iio.imwrite(filename, data)
with pytest.raises(ValueError):
iio.imread(filename, key=0, page=0)
with pytest.raises(ValueError):
iio.imread(filename, series=0, index=0)
def test_tiffile_native_arguments(tmp_path):
filename = tmp_path / "test.tiff"
data = np.full((5, 128, 128, 3), 42, np.uint8)
data[0, 2, 3, :] = 7
iio.imwrite(filename, data)
page = iio.imread(filename, key=0)
np.testing.assert_allclose(page, data[0])
img = iio.imread(filename, series=0)
np.testing.assert_allclose(img, data)
def test_various_metadata_reading(tmp_path):
filename = tmp_path / "nightmare.tiff"
flat = np.full((255, 255, 3), 114, dtype=np.uint8)
volumetric = np.full((4, 255, 255, 3), 114, dtype=np.uint8)
different_shape = np.full((120, 73, 3), 114, dtype=np.uint8)
with iio.imopen(filename, "w") as file:
file.write(flat)
file.write(volumetric, compression="zlib")
file.write(different_shape)
metadata = iio.immeta(filename, index=1, page=2)
assert metadata["compression"] == 8 # (ADOBE_DEFLATE)
metadata = iio.immeta(filename, index=..., page=2)
assert metadata["compression"] == 8 # (ADOBE_DEFLATE)
def test_iter_pages(tmp_path):
filename = tmp_path / "nightmare.tiff"
flat = np.full((255, 255, 3), 114, dtype=np.uint8)
volumetric = np.full((4, 255, 255, 3), 114, dtype=np.uint8)
different_shape = np.full((120, 73, 3), 114, dtype=np.uint8)
with iio.imopen(filename, "w") as file:
file.write(flat)
file.write(volumetric, compression="zlib")
file.write(different_shape)
with iio.imopen(filename, "r") as file:
for idx, page in enumerate(file.iter_pages(index=1)):
np.testing.assert_allclose(page, volumetric[idx])
|