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
|
# Copyright (c) DataLab Platform Developers, BSD 3-Clause license, see LICENSE file.
"""
Image I/O registry
"""
from __future__ import annotations
import abc
import os.path as osp
from typing import Sequence
import numpy as np
from sigima.config import _
from sigima.io.base import BaseIORegistry, FormatBase
from sigima.objects.image import ImageObj, create_image
from sigima.worker import CallbackWorkerProtocol
class ImageIORegistry(BaseIORegistry):
"""Metaclass for registering image I/O handler classes"""
REGISTRY_INFO: str = _("Image I/O formats")
_io_format_instances: list[ImageFormatBase] = []
class ImageFormatBaseMeta(ImageIORegistry, abc.ABCMeta):
"""Mixed metaclass to avoid conflicts"""
class ImageFormatBase(abc.ABC, FormatBase, metaclass=ImageFormatBaseMeta):
"""Base image format object.
This class is used to define the interface for image I/O formats.
It is an abstract base class that defines the methods that must be
implemented by any image format class.
"""
@abc.abstractmethod
def read(
self, filename: str, worker: CallbackWorkerProtocol | None = None
) -> Sequence[ImageObj]:
"""Read list of image objects from file
Args:
filename: File name
worker: Callback worker object
Returns:
List of image objects
"""
@abc.abstractmethod
def write(self, filename: str, obj: ImageObj) -> None:
"""Write data to file
Args:
filename: file name
obj: native object (signal or image)
Raises:
NotImplementedError: if format is not supported
"""
class SingleImageFormatBase(ImageFormatBase):
"""Base image format object for single image (e.g., TIFF, PNG, etc.)."""
@staticmethod
def create_object(filename: str, index: int | None = None) -> ImageObj:
"""Create empty object
Args:
filename: File name
index: Index of object in file
Returns:
Image object
"""
name = osp.basename(filename)
if index is not None:
name += f" {index:02d}"
return create_image(name, metadata={"source": filename})
def read(
self, filename: str, worker: CallbackWorkerProtocol | None = None
) -> list[ImageObj]:
"""Read list of image objects from file
Args:
filename: File name
worker: Callback worker object
Returns:
List of image objects
"""
# Default implementation covers the case of a single image:
obj = self.create_object(filename)
obj.data = self.read_data(filename)
unique_values = np.unique(obj.data)
if len(unique_values) == 2:
# Binary image: set LUT range to unique values
obj.zscalemin, obj.zscalemax = unique_values.tolist()
return [obj]
@staticmethod
@abc.abstractmethod
def read_data(filename: str) -> np.ndarray:
"""Read data and return it
Args:
filename: File name
Returns:
Image array data
"""
def write(self, filename: str, obj: ImageObj) -> None:
"""Write data to file
Args:
filename: file name
obj: native object (signal or image)
Raises:
NotImplementedError: if format is not supported
"""
data = obj.data
self.write_data(filename, data)
@staticmethod
def write_data(filename: str, data: np.ndarray) -> None:
"""Write data to file
Args:
filename: File name
data: Image array data
"""
raise NotImplementedError(f"Writing to {filename} is not supported")
class MultipleImagesFormatBase(SingleImageFormatBase):
"""Base image format object for multiple images (e.g., SIF or SPE).
Works with read function that returns a NumPy array of 3 dimensions, where
the first dimension is the number of images.
"""
def read(
self, filename: str, worker: CallbackWorkerProtocol | None = None
) -> list[ImageObj]:
"""Read list of image objects from file
Args:
filename: File name
worker: Callback worker object
Returns:
List of image objects
"""
data = self.read_data(filename)
if len(data.shape) == 3:
objlist = []
for idx in range(data.shape[0]):
obj = self.create_object(filename, index=idx)
obj.data = data[idx, ::]
objlist.append(obj)
if worker is not None:
worker.set_progress((idx + 1) / data.shape[0])
if worker.was_canceled():
break
return objlist
obj = self.create_object(filename)
obj.data = data
return [obj]
|