Skip to content

Commit

Permalink
add installation instruction (#28)
Browse files Browse the repository at this point in the history
  • Loading branch information
gau-nernst authored Feb 25, 2023
1 parent bd457dd commit b311a66
Showing 1 changed file with 16 additions and 0 deletions.
16 changes: 16 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,22 @@ This project provides low level functionality for Computer Vision written in [Ru
- We package with support for Linux [amd64/arm64], Macos and WIndows.
- Supported Python versions are 3.7/3.8/3.9/3.10/3.11

## Installation

From pip:

```bash
pip install kornia-rs
```

From source:

```bash
pip install maturin
maturin build --release --out dist -i $(which python3)
pip install dist/*.whl
```

## Basic Usage

Load an image, that is converted to `cv::Tensor` wich is a centric structure to the DLPack protocol to share tensor data across frameworks with a zero-copy cost.
Expand Down

0 comments on commit b311a66

Please sign in to comment.