Skip to content

Commit

Permalink
Fix cross-linking to numpy documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
sbesson committed Apr 5, 2022
1 parent b5810ea commit 6f462e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions ome_zarr/writer.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def write_multiscale(
"""
Write a pyramid with multiscale metadata to disk.
:type pyramid: list of :class:`np.ndarray`
:type pyramid: list of :class:`numpy.ndarray`
:param pyramid:
The image data to save. Largest level first. All image arrays MUST be up to
5-dimensional with dimensions ordered (t, c, z, y, x)
Expand Down Expand Up @@ -397,7 +397,7 @@ def write_image(
) -> None:
"""Writes an image to the zarr store according to ome-zarr specification
:type image: :class:`np.ndarray`
:type image: :class:`numpy.ndarray`
:param image:
The image data to save. A downsampling of the data will be computed
if the scaler argument is non-None.
Expand Down Expand Up @@ -508,7 +508,7 @@ def write_multiscale_labels(
Including the multiscales and image-label metadata.
Creates the label data in the sub-group "labels/{name}"
:type pyramid: list of :class:`np.ndarray`
:type pyramid: list of :class:`numpy.ndarray`
:param pyramid:
the image label data to save. Largest level first
All image arrays MUST be up to 5-dimensional with dimensions
Expand Down Expand Up @@ -582,7 +582,7 @@ def write_labels(
Including the multiscales and image-label metadata.
Creates the label data in the sub-group "labels/{name}"
:type labels: :class:`np.ndarray`
:type labels: :class:`numpy.ndarray`
:param labels:
The label data to save. A downsampling of the data will be computed
if the scaler argument is non-None.
Expand Down

0 comments on commit 6f462e7

Please sign in to comment.