File: index.rst

package info (click to toggle)
openslide-python 1.0.1-5
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,184 kB
  • ctags: 787
  • sloc: python: 1,044; makefile: 10
file content (350 lines) | stat: -rw-r--r-- 11,807 bytes parent folder | download
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
================
OpenSlide Python
================

OpenSlide Python is a Python interface to the OpenSlide_ library.

OpenSlide is a C library that provides a simple interface for reading
whole-slide images, also known as virtual slides, which are high-resolution
images used in digital pathology.  These images can occupy tens of gigabytes
when uncompressed, and so cannot be easily read using standard tools or
libraries, which are designed for images that can be comfortably
uncompressed into RAM.  Whole-slide images are typically multi-resolution;
OpenSlide allows reading a small amount of image data at the resolution
closest to a desired zoom level.

OpenSlide can read virtual slides in several formats:

* Aperio_ (``.svs``, ``.tif``)
* Hamamatsu_ (``.ndpi``, ``.vms``, ``.vmu``)
* Leica_ (``.scn``)
* MIRAX_ (``.mrxs``)
* Sakura_ (``.svslide``)
* Trestle_ (``.tif``)
* Ventana_ (``.bif``)
* `Generic tiled TIFF`_ (``.tif``)

OpenSlide Python is released under the terms of the `GNU Lesser General
Public License, version 2.1`_.

.. _OpenSlide: http://openslide.org/
.. _Aperio: http://openslide.org/formats/aperio/
.. _Hamamatsu: http://openslide.org/formats/hamamatsu/
.. _Leica: http://openslide.org/formats/leica/
.. _MIRAX: http://openslide.org/formats/mirax/
.. _Sakura: http://openslide.org/formats/sakura/
.. _Trestle: http://openslide.org/formats/trestle/
.. _Ventana: http://openslide.org/formats/ventana/
.. _`Generic tiled TIFF`: http://openslide.org/formats/generic-tiff/
.. _`GNU Lesser General Public License, version 2.1`: https://raw.github.com/openslide/openslide-python/master/lgpl-2.1.txt


Basic usage
===========

OpenSlide objects
-----------------

.. module:: openslide

.. class:: OpenSlide(filename)

   An open whole-slide image.

   If any operation on the object fails, :exc:`OpenSlideError` is raised. 
   OpenSlide has latching error semantics: once :exc:`OpenSlideError` is
   raised, all future operations on the :class:`OpenSlide`, other than
   :meth:`close()`, will also raise :exc:`OpenSlideError`.

   :meth:`close()` is called automatically when the object is deleted. 
   The object may be used as a context manager, in which case it will be
   closed upon exiting the context.

   :param str filename: the file to open
   :raises OpenSlideUnsupportedFormatError: if the file is not recognized by
      OpenSlide
   :raises OpenSlideError: if the file is recognized but an error occurred

   .. classmethod:: detect_format(filename)

      Return a string describing the format vendor of the specified file.
      This string is also accessible via the :data:`PROPERTY_NAME_VENDOR`
      property.

      If the file is not recognized, return :obj:`None`.

      :param str filename: the file to examine

   .. attribute:: level_count

      The number of levels in the slide.  Levels are numbered from ``0``
      (highest resolution) to ``level_count - 1`` (lowest resolution).

   .. attribute:: dimensions

      A ``(width, height)`` tuple for level 0 of the slide.

   .. attribute:: level_dimensions

      A list of ``(width, height)`` tuples, one for each level of the slide.
      ``level_dimensions[k]`` are the dimensions of level ``k``.

   .. attribute:: level_downsamples

      A list of downsample factors for each level of the slide.
      ``level_downsamples[k]`` is the downsample factor of level ``k``.

   .. attribute:: properties

      Metadata about the slide, in the form of a
      :class:`Mapping <collections.Mapping>` from OpenSlide property name to
      property value.  Property values are always strings.  OpenSlide
      provides some :ref:`standard properties <Standard properties>`, plus
      additional properties that vary by slide format.

   .. attribute:: associated_images

      Images, such as label or macro images, which are associated with this
      slide.  This is a :class:`Mapping <collections.Mapping>` from image
      name to RGBA :class:`Image <PIL.Image.Image>`.

      Unlike in the C interface, these images are not premultiplied.

   .. method:: read_region(location, level, size)

      Return an RGBA :class:`Image <PIL.Image.Image>` containing the
      contents of the specified region.

      Unlike in the C interface, the image data is not premultiplied.

      :param tuple location: ``(x, y)`` tuple giving the top left pixel in
         the level 0 reference frame
      :param int level: the level number
      :param tuple size: ``(width, height)`` tuple giving the region size

   .. method:: get_best_level_for_downsample(downsample)

      Return the best level for displaying the given downsample.

      :param float downsample: the desired downsample factor

   .. method:: get_thumbnail(size)

      Return an :class:`Image <PIL.Image.Image>` containing an RGB thumbnail
      of the slide.

      :param tuple size: the maximum size of the thumbnail as a
         ``(width, height)`` tuple

   .. method:: close()

      Close the OpenSlide object.


.. _`Standard properties`:

Standard properties
-------------------

The :mod:`openslide` module provides attributes containing the names of
some commonly-used OpenSlide properties.

.. data:: PROPERTY_NAME_COMMENT

   The name of the property containing a slide's comment, if any.

.. data:: PROPERTY_NAME_VENDOR

   The name of the property containing an identification of the vendor.

.. data:: PROPERTY_NAME_QUICKHASH1

   The name of the property containing the "quickhash-1" sum.

.. data:: PROPERTY_NAME_BACKGROUND_COLOR

   The name of the property containing a slide's background color, if any.
   It is represented as an RGB hex triplet.

.. data:: PROPERTY_NAME_OBJECTIVE_POWER

   The name of the property containing a slide's objective power, if known.

.. data:: PROPERTY_NAME_MPP_X

   The name of the property containing the number of microns per pixel in
   the X dimension of level 0, if known.

.. data:: PROPERTY_NAME_MPP_Y

   The name of the property containing the number of microns per pixel in
   the Y dimension of level 0, if known.

.. data:: PROPERTY_NAME_BOUNDS_X

   The name of the property containing the X coordinate of the rectangle
   bounding the non-empty region of the slide, if available.

.. data:: PROPERTY_NAME_BOUNDS_Y

   The name of the property containing the Y coordinate of the rectangle
   bounding the non-empty region of the slide, if available.

.. data:: PROPERTY_NAME_BOUNDS_WIDTH

   The name of the property containing the width of the rectangle bounding
   the non-empty region of the slide, if available.

.. data:: PROPERTY_NAME_BOUNDS_HEIGHT

   The name of the property containing the height of the rectangle bounding
   the non-empty region of the slide, if available.


Exceptions
----------

.. exception:: OpenSlideError

   An error produced by the OpenSlide library.

   Once :exc:`OpenSlideError` has been raised by a particular
   :class:`OpenSlide`, all future operations on that :class:`OpenSlide`
   (other than :meth:`close() <OpenSlide.close>`) will also raise
   :exc:`OpenSlideError`.

.. exception:: OpenSlideUnsupportedFormatError

   OpenSlide does not support the requested file.  Subclass of
   :exc:`OpenSlideError`.


Wrapping a PIL Image
====================

.. class:: ImageSlide(file)

   A wrapper around an :class:`Image <PIL.Image.Image>` object that
   provides an :class:`OpenSlide`-compatible API.

   :param file: a filename or :class:`Image <PIL.Image.Image>` object
   :raises IOError: if the file cannot be opened

.. function:: open_slide(filename)

   Return an :class:`OpenSlide` for whole-slide images and an
   :class:`ImageSlide` for other types of images.

   :param str filename: the file to open
   :raises OpenSlideError: if the file is recognized by OpenSlide but an
      error occurred
   :raises IOError: if the file is not recognized at all


Deep Zoom support
=================

.. module:: openslide.deepzoom

OpenSlide Python provides functionality for generating individual
`Deep Zoom`_ tiles from slide objects.  This is useful for displaying
whole-slide images in a web browser without converting the entire slide to
Deep Zoom or a similar format.

.. _`Deep Zoom`: http://msdn.microsoft.com/en-us/library/cc645050%28VS.95%29.aspx

.. class:: DeepZoomGenerator(osr, tile_size=256, overlap=1, limit_bounds=False)

   A Deep Zoom generator that wraps an
   :class:`OpenSlide <openslide.OpenSlide>` or
   :class:`ImageSlide <openslide.ImageSlide>` object.

   :param osr: the slide object
   :param int tile_size: the width and height of a single tile
   :param int overlap: the number of extra pixels to add to each interior edge
      of a tile
   :param bool limit_bounds: ``True`` to render only the non-empty slide
      region

   .. attribute:: level_count

      The number of Deep Zoom levels in the image.

   .. attribute:: tile_count

      The total number of Deep Zoom tiles in the image.

   .. attribute:: level_tiles

      A list of ``(tiles_x, tiles_y)`` tuples for each Deep Zoom level.
      ``level_tiles[k]`` are the tile counts of level ``k``.

   .. attribute:: level_dimensions

      A list of ``(pixels_x, pixels_y)`` tuples for each Deep Zoom level.
      ``level_dimensions[k]`` are the dimensions of level ``k``.

   .. method:: get_dzi(format)

      Return a string containing the XML metadata for the Deep Zoom ``.dzi``
      file.

      :param str format: the delivery format of the individual tiles
         (``png`` or ``jpeg``)

   .. method:: get_tile(level, address)

      Return an RGB :class:`Image <PIL.Image.Image>` for a tile.

      :param int level: the Deep Zoom level
      :param tuple address: the address of the tile within the level as a
         ``(column, row)`` tuple

   .. method:: get_tile_coordinates(level, address)

      Return the :meth:`OpenSlide.read_region()
      <openslide.OpenSlide.read_region>` arguments corresponding to the
      specified tile.

      Most applications should use :meth:`get_tile()` instead.

      :param int level: the Deep Zoom level
      :param tuple address: the address of the tile within the level as a
         ``(column, row)`` tuple

   .. method:: get_tile_dimensions(level, address)

      Return a ``(pixels_x, pixels_y)`` tuple for the specified tile.

      :param int level: the Deep Zoom level
      :param tuple address: the address of the tile within the level as a
         ``(column, row)`` tuple


Example programs
----------------

Several `Deep Zoom examples`_ are included with OpenSlide Python:

deepzoom_server.py_
  A basic server for a single slide.  It serves a web page with a zoomable
  slide viewer, a list of slide properties, and the ability to view
  associated images.

deepzoom_multiserver.py_
  A basic server for a directory tree of slides.  It serves an index page
  which links to zoomable slide viewers for all slides in the tree.

deepzoom_tile.py_
  A program to generate and store a complete Deep Zoom directory tree for a
  slide.  It can optionally store an HTML page with a zoomable slide viewer,
  a list of slide properties, and the ability to view associated images.

  This program is intended as an example.  If you need to generate Deep Zoom
  trees for production applications, consider `using VIPS`_ instead.

.. _`Deep Zoom examples`: https://github.com/openslide/openslide-python/tree/master/examples/deepzoom
.. _deepzoom_server.py: https://github.com/openslide/openslide-python/blob/master/examples/deepzoom/deepzoom_server.py
.. _deepzoom_multiserver.py: https://github.com/openslide/openslide-python/blob/master/examples/deepzoom/deepzoom_multiserver.py
.. _deepzoom_tile.py: https://github.com/openslide/openslide-python/blob/master/examples/deepzoom/deepzoom_tile.py
.. _`using VIPS`: https://github.com/openslide/openslide/wiki/OpenSlideAndVIPS