|
1 | 1 | # bioio-sldy |
2 | 2 |
|
3 | 3 | [](https://github.com/bioio-devs/bioio-sldy/actions) |
4 | | -[](https://bioio-devs.github.io/bioio-sldy) |
| 4 | +[](https://badge.fury.io/py/bioio-sldy) |
| 5 | +[](https://opensource.org/licenses/BSD-3-Clause) |
| 6 | +[](https://www.python.org/downloads/release/python-390/) |
5 | 7 |
|
6 | | -A BioIO reader plugin for reading 3i slidebook (SLDY) images. |
7 | | - |
8 | | -This plugin is intended to be used in conjunction with [bioio](https://github.com/bioio-devs/bioio) |
| 8 | +A BioIO reader plugin for reading 3i Slidebook files |
9 | 9 |
|
10 | 10 | --- |
11 | 11 |
|
| 12 | + |
| 13 | +## Documentation |
| 14 | + |
| 15 | +[See the full documentation on our GitHub pages site](https://bioio-devs.github.io/bioio/OVERVIEW.html) - the generic use and installation instructions there will work for this package. |
| 16 | + |
| 17 | +Information about the base reader this package relies on can be found in the `bioio-base` repository [here](https://github.com/bioio-devs/bioio-base) |
| 18 | + |
12 | 19 | ## Installation |
13 | 20 |
|
14 | 21 | **Stable Release:** `pip install bioio-sldy`<br> |
15 | 22 | **Development Head:** `pip install git+https://github.com/bioio-devs/bioio-sldy.git` |
16 | 23 |
|
17 | | -## Quickstart |
| 24 | +## Example Usage (see full documentation for more examples) |
18 | 25 |
|
| 26 | +Install bioio-sldy alongside bioio: |
| 27 | + |
| 28 | +`pip install bioio bioio-sldy` |
| 29 | + |
| 30 | + |
| 31 | +This example shows a simple use case for just accessing the pixel data of the image |
| 32 | +by explicitly passing this `Reader` into the `BioImage`. Passing the `Reader` into |
| 33 | +the `BioImage` instance is optional as `bioio` will automatically detect installed |
| 34 | +plug-ins and auto-select the most recently installed plug-in that supports the file |
| 35 | +passed in. |
19 | 36 | ```python |
20 | | -from bioio_sldy import Reader |
| 37 | +from bioio import BioImage |
| 38 | +import bioio_sldy |
21 | 39 |
|
22 | | -r = Reader("my-image.ext") |
23 | | -r.dims |
| 40 | +img = BioImage("my_file.sld", reader=bioio_ome_tiff.Reader) |
| 41 | +img.data |
24 | 42 | ``` |
25 | 43 |
|
26 | | -## Documentation |
| 44 | +## Issues |
| 45 | +[_Click here to view all open issues in bioio-devs organization at once_](https://github.com/search?q=user%3Abioio-devs+is%3Aissue+is%3Aopen&type=issues&ref=advsearch) or check this repository's issue tab. |
27 | 46 |
|
28 | | -For full package documentation please visit [bioio-devs.github.io/bioio-sldy](https://bioio-devs.github.io/bioio-sldy). |
29 | 47 |
|
30 | 48 | ## Development |
31 | 49 |
|
32 | 50 | See [CONTRIBUTING.md](CONTRIBUTING.md) for information related to developing the code. |
33 | | - |
34 | | -**MIT License** |
|
0 commit comments