-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10 changed files
with
29 additions
and
339 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,33 +1,50 @@ | ||
# bioio-dv | ||
|
||
[![Build Status](https://github.com/bioio-devs/bioio-dv/actions/workflows/ci.yml/badge.svg)](https://github.com/bioio-devs/bioio-dv/actions) | ||
[![Documentation](https://github.com/bioio-devs/bioio-dv/actions/workflows/docs.yml/badge.svg)](https://bioio-devs.github.io/bioio-dv) | ||
[![PyPI version](https://badge.fury.io/py/bioio-dv.svg)](https://badge.fury.io/py/bioio-dv) | ||
[![License](https://img.shields.io/badge/License-BSD%203--Clause-blue.svg)](https://opensource.org/licenses/BSD-3-Clause) | ||
[![Python 3.9+](https://img.shields.io/badge/python-3.9,3.10,3.11-blue.svg)](https://www.python.org/downloads/release/python-390/) | ||
|
||
A BioIO reader plugin for reading Digital Video (DV) files. | ||
A BioIO reader plugin for reading dv (deltavision) files using `mrc` | ||
|
||
This plugin is intended to be used in conjunction with [bioio](https://github.com/bioio-devs/bioio) | ||
--- | ||
|
||
|
||
## Documentation | ||
|
||
[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. | ||
|
||
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) | ||
|
||
## Installation | ||
|
||
**Stable Release:** `pip install bioio-dv`<br> | ||
**Development Head:** `pip install git+https://github.com/bioio-devs/bioio-dv.git` | ||
|
||
## Quickstart | ||
## Example Usage (see full documentation for more examples) | ||
|
||
Install bioio-dv alongside bioio: | ||
|
||
`pip install bioio bioio-dv` | ||
|
||
|
||
This example shows a simple use case for just accessing the pixel data of the image | ||
by explicitly passing this `Reader` into the `BioImage`. Passing the `Reader` into | ||
the `BioImage` instance is optional as `bioio` will automatically detect installed | ||
plug-ins and auto-select the most recently installed plug-in that supports the file | ||
passed in. | ||
```python | ||
from bioio_dv import Reader | ||
from bioio import BioImage | ||
import bioio_dv | ||
|
||
r = Reader("my-image.ext") | ||
r.dims | ||
img = BioImage("my_file.dv", reader=bioio_dv.Reader) | ||
img.data | ||
``` | ||
|
||
## Documentation | ||
## Issues | ||
[_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. | ||
|
||
For full package documentation please visit [bioio-devs.github.io/bioio-dv](https://bioio-devs.github.io/bioio-dv). | ||
|
||
## Development | ||
|
||
See [CONTRIBUTING.md](CONTRIBUTING.md) for information related to developing the code. | ||
|
||
**MIT License** |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.