Permalink
Browse files

api/python: Update for OpenSlide Python 1.1.1

  • Loading branch information...
1 parent 80ab1a0 commit 4e908cbadc37d5055e5d2695fa58ce53d040625c @bgilbert bgilbert committed Jun 12, 2016
View
@@ -1,4 +1,4 @@
# Sphinx build info version 1
# This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 1806d36fc8385536bf47e3b3ce303cc0
+config: fb3a52c449aa26d7e74c2c0eac3445b2
tags: 645f666f9bcd5a90fca523b33c5a78b7
View

Large diffs are not rendered by default.

Oops, something went wrong.
View
@@ -1,6 +1,6 @@
# Sphinx inventory version 2
# Project: OpenSlide Python
-# Version: 1.1.0
+# Version: 1.1.1
# The remainder of this file is compressed using zlib.
xڵVMs�0��W0�^�4W���b�?����6�f��HK���W�ƩMo�ow���+�%�'�  ��o���0o>�{��;/V��E��� ��j�Z���i�ϐG����%~�y!��m�E���m��1[�)����Fp>(���-�Q^��p�i}7|�����Qn.��LPc��m�c>����� $h�J��� ��֖+i*Q�m���'r$S�Dgo�=��;@��2�J��A�bN`'1�E��Ն��q@����]8^�U+�E�&� ɣ�9�S�빶���i�p����U����A���Ǵ�ryݑSQ�
ӝD�&��z>]��h�
View
@@ -6,15 +6,15 @@
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
- <title>Search &mdash; OpenSlide Python 1.1.0 documentation</title>
+ <title>Search &mdash; OpenSlide Python 1.1.1 documentation</title>
<link rel="stylesheet" href="static/default.css" type="text/css" />
<link rel="stylesheet" href="static/pygments.css" type="text/css" />
<script type="text/javascript">
var DOCUMENTATION_OPTIONS = {
URL_ROOT: './',
- VERSION: '1.1.0',
+ VERSION: '1.1.1',
COLLAPSE_INDEX: false,
FILE_SUFFIX: '.html',
HAS_SOURCE: true
@@ -24,7 +24,7 @@
<script type="text/javascript" src="static/underscore.js"></script>
<script type="text/javascript" src="static/doctools.js"></script>
<script type="text/javascript" src="static/searchtools.js"></script>
- <link rel="top" title="OpenSlide Python 1.1.0 documentation" href="index.html" />
+ <link rel="top" title="OpenSlide Python 1.1.1 documentation" href="index.html" />
<script type="text/javascript">
jQuery(function() { Search.loadIndex("searchindex.js"); });
</script>
@@ -37,7 +37,7 @@
<div class="related">
<h3>Navigation</h3>
<ul>
- <li><a href="index.html">OpenSlide Python 1.1.0 documentation</a> &raquo;</li>
+ <li><a href="index.html">OpenSlide Python 1.1.1 documentation</a> &raquo;</li>
</ul>
</div>
@@ -82,12 +82,12 @@ <h1 id="search-documentation">Search</h1>
<div class="related">
<h3>Navigation</h3>
<ul>
- <li><a href="index.html">OpenSlide Python 1.1.0 documentation</a> &raquo;</li>
+ <li><a href="index.html">OpenSlide Python 1.1.1 documentation</a> &raquo;</li>
</ul>
</div>
<div class="footer">
- &copy; Copyright 2010-2014 Carnegie Mellon University.
- Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.2.
+ &copy; Copyright 2010-2016 Carnegie Mellon University and others.
+ Created using <a href="http://sphinx-doc.org/">Sphinx</a> 1.2.3.
</div>
</body>
</html>

Some generated files are not rendered by default. Learn more.

Oops, something went wrong.
@@ -19,9 +19,10 @@ OpenSlide can read virtual slides in several formats:
* Hamamatsu_ (``.ndpi``, ``.vms``, ``.vmu``)
* Leica_ (``.scn``)
* MIRAX_ (``.mrxs``)
+* Philips_ (``.tiff``)
* Sakura_ (``.svslide``)
* Trestle_ (``.tif``)
-* Ventana_ (``.bif``)
+* Ventana_ (``.bif``, ``.tif``)
* `Generic tiled TIFF`_ (``.tif``)
OpenSlide Python is released under the terms of the `GNU Lesser General
@@ -32,6 +33,7 @@ Public License, version 2.1`_.
.. _Hamamatsu: http://openslide.org/formats/hamamatsu/
.. _Leica: http://openslide.org/formats/leica/
.. _MIRAX: http://openslide.org/formats/mirax/
+.. _Philips: http://openslide.org/formats/philips/
.. _Sakura: http://openslide.org/formats/sakura/
.. _Trestle: http://openslide.org/formats/trestle/
.. _Ventana: http://openslide.org/formats/ventana/
@@ -253,14 +255,15 @@ 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)
+.. class:: DeepZoomGenerator(osr, tile_size=254, 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 tile_size: the width and height of a single tile. For best
+ viewer performance, ``tile_size + 2 * overlap`` should be a power of two.
: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

Large diffs are not rendered by default.

Oops, something went wrong.
@@ -4,8 +4,10 @@
.highlight .err { border: 1px solid #FF0000 } /* Error */
.highlight .k { color: #007020; font-weight: bold } /* Keyword */
.highlight .o { color: #666666 } /* Operator */
+.highlight .ch { color: #408090; font-style: italic } /* Comment.Hashbang */
.highlight .cm { color: #408090; font-style: italic } /* Comment.Multiline */
.highlight .cp { color: #007020 } /* Comment.Preproc */
+.highlight .cpf { color: #408090; font-style: italic } /* Comment.PreprocFile */
.highlight .c1 { color: #408090; font-style: italic } /* Comment.Single */
.highlight .cs { color: #408090; background-color: #fff0f0 } /* Comment.Special */
.highlight .gd { color: #A00000 } /* Generic.Deleted */
@@ -40,6 +42,7 @@
.highlight .nv { color: #bb60d5 } /* Name.Variable */
.highlight .ow { color: #007020; font-weight: bold } /* Operator.Word */
.highlight .w { color: #bbbbbb } /* Text.Whitespace */
+.highlight .mb { color: #208050 } /* Literal.Number.Bin */
.highlight .mf { color: #208050 } /* Literal.Number.Float */
.highlight .mh { color: #208050 } /* Literal.Number.Hex */
.highlight .mi { color: #208050 } /* Literal.Number.Integer */

0 comments on commit 4e908cb

Please sign in to comment.