Skip to content

wkcuber._internal.knossos

# &nbsp class KnossosDataset:
# &nbsp KnossosDataset(root: Union[str, pathlib.Path], dtype: numpy.dtype)
# &nbsp def read( self, offset: Tuple[int, int, int], shape: Tuple[int, int, int] ) -> numpy.ndarray:
# &nbsp def write(self, offset: Tuple[int, int, int], data: numpy.ndarray) -> None:
# &nbsp def read_cube(self, cube_xyz: Tuple[int, ...]) -> numpy.ndarray:
# &nbsp def write_cube(self, cube_xyz: Tuple[int, ...], cube_data: numpy.ndarray) -> None:
# &nbsp def list_files(self) -> Iterator[pathlib.Path]:
# &nbsp def list_cubes(self) -> Generator[Tuple[int, int, int], Any, NoneType]:
# &nbsp def close(self) -> None:
# &nbsp
@staticmethod
def open( root: Union[str, pathlib.Path], dtype: numpy.dtype ) -> wkcuber._internal.knossos.KnossosDataset: