kornia-rs 0.1.8
pip install kornia-rs
Released:
Low level implementations for computer vision in Rust
Navigation
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache-2.0)
- Author: Edgar Riba
- Maintainer: Edgar Riba
- Tags computer vision, rust
- Requires: Python >=3.8
Classifiers
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Project description
kornia-rs: low level computer vision library in Rust
The kornia
crate is a low level library for Computer Vision written in Rust 🦀
Use the library to perform image I/O, visualisation and other low level operations in your machine learning and data-science projects in a thread-safe and efficient way.
Getting Started
cargo run --bin hello_world -- --image-path path/to/image.jpg
use kornia::image::Image;
use kornia::io::functional as F;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// read the image
let image: Image<u8, 3> = F::read_image_any("tests/data/dog.jpeg")?;
println!("Hello, world! 🦀");
println!("Loaded Image size: {:?}", image.size());
println!("\nGoodbyte!");
Ok(())
}
Hello, world! 🦀
Loaded Image size: ImageSize { width: 258, height: 195 }
Goodbyte!
Features
- 🦀The library is primarly written in Rust.
- 🚀 Multi-threaded and efficient image I/O, image processing and advanced computer vision operators.
- 🔢 Efficient Tensor and Image API for deep learning and scientific computing.
- 🐍 Python bindings are created with PyO3/Maturin.
- 📦 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/3.12/3.13
Supported image formats
- Read images from AVIF, BMP, DDS, Farbeld, GIF, HDR, ICO, JPEG (libjpeg-turbo), OpenEXR, PNG, PNM, TGA, TIFF, WebP.
Image processing
- Convert images to grayscale, resize, crop, rotate, flip, pad, normalize, denormalize, and other image processing operations.
Video processing
- Capture video frames from a camera and video writers.
🛠️ Installation
>_ System dependencies
Dependeing on the features you want to use, you might need to install the following dependencies in your system:
turbojpeg
sudo apt-get install nasm
gstreamer
sudo apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
** Check the gstreamr installation guide: https://docs.rs/gstreamer/latest/gstreamer/#installation
🦀 Rust
Add the following to your Cargo.toml
:
[dependencies]
kornia = "v0.1.7"
Alternatively, you can use each sub-crate separately:
[dependencies]
kornia-core = { git = "https://github.com/kornia/kornia-rs", tag = "v0.1.7" }
kornia-io = { git = "https://github.com/kornia/kornia-rs", tag = "v0.1.7" }
kornia-image = { git = "https://github.com/kornia/kornia-rs", tag = "v0.1.7" }
kornia-imgproc = { git = "https://github.com/kornia/kornia-rs", tag = "v0.1.7" }
🐍 Python
pip install kornia-rs
Examples: Image processing
The following example shows how to read an image, convert it to grayscale and resize it. The image is then logged to a rerun
recording stream.
Checkout all the examples in the examples
directory to see more use cases.
use kornia::{image::{Image, ImageSize}, imgproc};
use kornia::io::functional as F;
fn main() -> Result<(), Box<dyn std::error::Error>> {
// read the image
let image: Image<u8, 3> = F::read_image_any("tests/data/dog.jpeg")?;
let image_viz = image.clone();
let image_f32: Image<f32, 3> = image.cast_and_scale::<f32>(1.0 / 255.0)?;
// convert the image to grayscale
let mut gray = Image::<f32, 1>::from_size_val(image_f32.size(), 0.0)?;
imgproc::color::gray_from_rgb(&image_f32, &mut gray)?;
// resize the image
let new_size = ImageSize {
width: 128,
height: 128,
};
let mut gray_resized = Image::<f32, 1>::from_size_val(new_size, 0.0)?;
imgproc::resize::resize_native(
&gray, &mut gray_resized,
imgproc::resize::InterpolationMode::Bilinear,
)?;
println!("gray_resize: {:?}", gray_resized.size());
// create a Rerun recording stream
let rec = rerun::RecordingStreamBuilder::new("Kornia App").connect()?;
// log the images
let _ = rec.log("image", &rerun::Image::try_from(image_viz.data)?);
let _ = rec.log("gray", &rerun::Image::try_from(gray.data)?);
let _ = rec.log("gray_resize", &rerun::Image::try_from(gray_resized.data)?);
Ok(())
}
Python usage
Load an image, that is converted directly to a numpy array to ease the integration with other libraries.
import kornia_rs as K
import numpy as np
# load an image with using libjpeg-turbo
img: np.ndarray = K.read_image_jpeg("dog.jpeg")
# alternatively, load other formats
# img: np.ndarray = K.read_image_any("dog.png")
assert img.shape == (195, 258, 3)
# convert to dlpack to import to torch
img_t = torch.from_dlpack(img)
assert img_t.shape == (195, 258, 3)
Write an image to disk
import kornia_rs as K
import numpy as np
# load an image with using libjpeg-turbo
img: np.ndarray = K.read_image_jpeg("dog.jpeg")
# write the image to disk
K.write_image_jpeg("dog_copy.jpeg", img)
Encode or decode image streams using the turbojpeg
backend
import kornia_rs as K
# load image with kornia-rs
img = K.read_image_jpeg("dog.jpeg")
# encode the image with jpeg
image_encoder = K.ImageEncoder()
image_encoder.set_quality(95) # set the encoding quality
# get the encoded stream
img_encoded: list[int] = image_encoder.encode(img)
# decode back the image
image_decoder = K.ImageDecoder()
decoded_img: np.ndarray = image_decoder.decode(bytes(image_encoded))
Resize an image using the kornia-rs
backend with SIMD acceleration
import kornia_rs as K
# load image with kornia-rs
img = K.read_image_jpeg("dog.jpeg")
# resize the image
resized_img = K.resize(img, (128, 128), interpolation="bilinear")
assert resized_img.shape == (128, 128, 3)
🧑💻 Development
Pre-requisites: install rust
and python3
in your system.
Install rustup in your system
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Install uv
to manage python dependencies
curl -LsSf https://astral.sh/uv/install.sh | sh
Install the just
command runner. This tool is used to manage the development tasks.
cargo install just
Clone the repository in your local directory
git clone https://github.com/kornia/kornia-rs.git
You can check the available commands by running just
in the root directory of the project.
$ just
Available recipes:
check-environment # Check if the required binaries for the project are installed
clean # Clean up caches and build artifacts
clippy # Run clippy with all features
clippy-default # Run clippy with default features
fmt # Run autoformatting and linting
py-build py_version='3.9' # Create virtual environment, and build kornia-py
py-build-release py_version='3.9' # Create virtual environment, and build kornia-py for release
py-install py_version='3.9' # Create virtual environment, and install dev requirements
py-test # Test the kornia-py code with pytest
test name='' # Test the code or a specific test
🐳 Devcontainer
This project includes a development container to provide a consistent development environment.
The devcontainer is configured to include all necessary dependencies and tools required for building and testing the kornia-rs
project. It ensures that the development environment is consistent across different machines and setups.
How to use
-
Install Remote - Containers extension: In Visual Studio Code, install the
Remote - Containers
extension from the Extensions view (Ctrl+Shift+X
). -
Open the project in the container:
- Open the
kornia-rs
project folder in Visual Studio Code. - Press
F1
and selectRemote-Containers: Reopen in Container
.
- Open the
Visual Studio Code will build the container and open the project inside it. You can now develop, build, and test the project within the containerized environment.
🦀 Rust
Compile the project and run the tests
just test
For specific tests, you can run the following command:
just test image
🐍 Python
To build the Python wheels, we use the maturin
package. Use the following command to build the wheels:
just py-build
To run the tests, use the following command:
just py-test
💜 Contributing
This is a child project of Kornia. Join the community to get in touch with us, or just sponsor the project: https://opencollective.com/kornia
Project details
Unverified details
These details have not been verified by PyPIProject links
Meta
- License: Apache Software License (Apache-2.0)
- Author: Edgar Riba
- Maintainer: Edgar Riba
- Tags computer vision, rust
- Requires: Python >=3.8
Classifiers
- Intended Audience
- License
- Operating System
- Programming Language
- Topic
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distributions
Uploaded
CPython 3.13
Windows x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.13
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.13
macOS 11.0+ ARM64
Uploaded
CPython 3.13
macOS 10.12+ x86-64
Uploaded
CPython 3.12
Windows x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.12
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.12
macOS 11.0+ ARM64
Uploaded
CPython 3.12
macOS 10.12+ x86-64
Uploaded
CPython 3.11
Windows x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.11
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.11
macOS 11.0+ ARM64
Uploaded
CPython 3.11
macOS 10.12+ x86-64
Uploaded
CPython 3.10
Windows x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.10
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.10
macOS 11.0+ ARM64
Uploaded
CPython 3.10
macOS 10.12+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.9
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.9
macOS 11.0+ ARM64
Uploaded
CPython 3.9
macOS 10.12+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.8
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.8
macOS 11.0+ ARM64
Uploaded
CPython 3.8
macOS 10.12+ x86-64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ x86-64
Uploaded
CPython 3.7m
manylinux: glibc 2.17+ ARM64
Uploaded
CPython 3.7m
macOS 11.0+ ARM64
Uploaded
CPython 3.7m
macOS 10.12+ x86-64
File details
Details for the file kornia_rs-0.1.8.tar.gz
.
File metadata
- Download URL: kornia_rs-0.1.8.tar.gz
- Upload date:
- Size: 75.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 519e05f51deb4c8e849889292b9c109e0ea0943ae5024685781c35018effafd9 |
|
MD5 | f1ee11f69fcb69bab8b2a3a691500099 |
|
BLAKE2b-256 | c68f931f6273d712ba80e2d4cd83f4d43c406fcbc7a8f2758ff69f4ed62a1eb0 |
File details
Details for the file kornia_rs-0.1.8-cp313-cp313-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 434fb087e2caef5b2ecd5222ea54cc443e907851b708be15142bc65ae82cef63 |
|
MD5 | 7e41bbdd96a06c78131d49e25b290fee |
|
BLAKE2b-256 | 27b6fb26cce38f7cfc887c9c967a0467c1ed348fa6d1e0f1d02c063b8f482043 |
File details
Details for the file kornia_rs-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2ef0c4a19103ff9c3c7e7acb2a7db0a276a0ab1ea1c19fe151aea384a98cd63c |
|
MD5 | 1f656ca04b4c63b0df30a3a28e207bdf |
|
BLAKE2b-256 | b7719b37dd1f60bd486e1b786df1a0c82696b1bc0992d2de7b281134618c0486 |
File details
Details for the file kornia_rs-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7d7c90c6244a37e0d1994e532ddf3484b3e7f767c54121d514feda83974a934 |
|
MD5 | 128bb4bb8bbb8f7dce98c54bd8d0624b |
|
BLAKE2b-256 | bbe69f3e1798718b5988c761a79f37782065c49464e4324fd49c5b0ab2e57610 |
File details
Details for the file kornia_rs-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1014eac46dd75c8ba9ca61579593d77b84918236877fcae9dca362ff5d6960e4 |
|
MD5 | f91105797c13cd2c03529cda2606de59 |
|
BLAKE2b-256 | dcb2a75a260d5f0ae2623a4fd3ee8f844b9b54bdd157566e25e95b2b698a9a7d |
File details
Details for the file kornia_rs-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9197fc690b79562ff745a9ebda05c1408b9938045aecbbdafeaa8aed1f238b31 |
|
MD5 | e6110cad887a21addf38d5aae58338ce |
|
BLAKE2b-256 | 8ec7a086f0f48e25c7a00fc376d41c20821293acd030d07b2329382a314eb6d9 |
File details
Details for the file kornia_rs-0.1.8-cp312-cp312-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | dba6d86df9d3bb3e99f2d6017b9939b9e2683929277e959d11ea86fb3153eaec |
|
MD5 | 34abbf71af6e92e5ce17f735e5c2ff23 |
|
BLAKE2b-256 | f36e2976bf8c182cced282ba8c6583b0d1f008fecbe3b0ca6324ed367872e58a |
File details
Details for the file kornia_rs-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.0 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 297e48f800c93e7cc8b089e472b77a272f9887509ce9d8756fab0fa7714f8439 |
|
MD5 | eaae6ce964d2ccf6ff236974906ad3f0 |
|
BLAKE2b-256 | 0a843bd78e98468665be72087b5669c4e02991b0ba82e5ec0c5bcbe0142f02d2 |
File details
Details for the file kornia_rs-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ca82f982d92d3b90f462848557ebd1500ea02d65b38b032305d1966c3bbc153 |
|
MD5 | 04e1c48f4cc64571bb3bf3d161a8ffd9 |
|
BLAKE2b-256 | ba4e9568a115bc69230fb43fed126ba1794ba42fb68354888a59bff879bcc960 |
File details
Details for the file kornia_rs-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | bf8a78b1fac32fe05974272c5659c6a2f8754d1c15372aa529e0b5802ea2daed |
|
MD5 | 682560a90a89cd99de777397ad87f021 |
|
BLAKE2b-256 | c74fffd54d9096ccac335e94b58d1b5c55b49c98d0de280e522e0c70b383b2fc |
File details
Details for the file kornia_rs-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 983200f2b336dd832d81154295ff152195ade0228054ecbe7ac9ed7d5bf3b031 |
|
MD5 | 6b1302b6ec0d68cfd4483a0dfb6e0370 |
|
BLAKE2b-256 | b980a38fc51df8bccd14b710a71163aa848cab867cab5d478769bc5020df18cb |
File details
Details for the file kornia_rs-0.1.8-cp311-cp311-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2886f3a586728fe4a3586b3cc1df1dbea5d8984c74f77e23f5ab198441ec6e3c |
|
MD5 | be4497e49fdb6db9d4860545a3ddfa26 |
|
BLAKE2b-256 | fe342270ec8702206a5a298ec2342b224148caf92421adac144f4e2362a9c676 |
File details
Details for the file kornia_rs-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b64be28fbac1f2e1bab3903b5016e1a957968fe43141ee7866c2ec5ebafc71ab |
|
MD5 | 84215ea88275943e685e456664c35738 |
|
BLAKE2b-256 | ebb946ffae8b1acfb00d08110440ce7ee00f0a92c0856829b76c0e10be394042 |
File details
Details for the file kornia_rs-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4968efcd26ca190977cfe84d38492a912ad95f13222473dbeb90f330aab51d82 |
|
MD5 | c5b5a4903d13e28f421bf8cdc6648136 |
|
BLAKE2b-256 | 0b1734501f53b4ce7608d5a43fb9e81e605433c0751367445a450a990e06d676 |
File details
Details for the file kornia_rs-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 2dc98296aeeccf2536c1f8efa99d3c273962c7a07a8ae7c088de09ecc19543c4 |
|
MD5 | d34354941e95c53a9279774eada72c13 |
|
BLAKE2b-256 | 866bf8b257bf88b0e167e9732c9190746a3a71fe4b9b6c8831529664285dedc4 |
File details
Details for the file kornia_rs-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 61b9822a68556198c5b526da939ddc3f9c630cab37c2d6bcf613c2de1bb3d088 |
|
MD5 | 66f30ecca95beae099d7cbbd7272fe30 |
|
BLAKE2b-256 | 838f9fec1b99f484e41e680cd1d7eb0948532d3fbf55547f53496019bf304fa7 |
File details
Details for the file kornia_rs-0.1.8-cp310-cp310-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 06f60ff032ce9824b5fe746d1e1cca06ea3f5ba72b71a907a1c48f0e27094333 |
|
MD5 | 4396e021adac4d64451c7286056c985d |
|
BLAKE2b-256 | 1806554954f6fcf752b3cba3b63b08eafe04fe485d069938f524180db28e0b2c |
File details
Details for the file kornia_rs-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 3b57fd6262ef932a3131dd211764bf184380742a2aea0a12c54949af7c61c2ac |
|
MD5 | e4e05716ca1c15ae1cfc1b62ea6cf1cc |
|
BLAKE2b-256 | 2581ea7b30aeabd1c2666fcc25d34b58e48ac635a774aa79c649173f438cb9a3 |
File details
Details for the file kornia_rs-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1f12aeaf672493b456f2d35b4b3c88eda3dd8284807430d0b173cb3272c7ef61 |
|
MD5 | 5f6d8e2e16177bae4ec3b39d38ac89ce |
|
BLAKE2b-256 | c820d7239226a6654e2438f075b5fc523d54847cbf43f04de4555005a9dceca8 |
File details
Details for the file kornia_rs-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | b82cf759df6f5fd935c1afd25aa3a145fd47f14af3650ad37c71189f49171bd8 |
|
MD5 | 742b5233bfd1c69ab9f9744fda4786f7 |
|
BLAKE2b-256 | 6a0ddd8f2cc4a6efcf72214d6b55f67713652a4b9b0bd76108c569a6c16a8829 |
File details
Details for the file kornia_rs-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 1380edbbb841f9579bc8677d388e326b7363e1d0d49e8bab567ec9ef1aec782f |
|
MD5 | d0e0bc44bef681202a28a78387039641 |
|
BLAKE2b-256 | a146f420afb7b83a5b4f8f29cc8050c39ba218f815089b6e11c28276b3db7af4 |
File details
Details for the file kornia_rs-0.1.8-cp39-cp39-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ff12844b8e92ff5805827cb04f1d5130c07798d023d9c17f33d4eab7bc72dbdf |
|
MD5 | f53868eb8ac5f4e439633e7f0dd60b2b |
|
BLAKE2b-256 | 9423bd6a4e482cb08d106c9c1b51e85596c72cdd3dc4584180894277d6338936 |
File details
Details for the file kornia_rs-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 21a303660b5e66b1cb9dd30033d075790d2e8b879e65db073a3d87c7710e0bda |
|
MD5 | 01dc7cbea525ba5ab9f444eae027b25e |
|
BLAKE2b-256 | 4da79d3ec3d7ca73efdca75570035d2a7d72b04c08cd5fa25d9207efb01b409c |
File details
Details for the file kornia_rs-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 283aa6203c3217734d02696877b455081d14eeb8b0cfa4740919078f90a6da74 |
|
MD5 | 0cc22744ae2dc123060fbdf827a7bfe3 |
|
BLAKE2b-256 | e85bfb954cc5ba289241b5db6377ff9b9cfeab93edd77727a029f5d3d941a207 |
File details
Details for the file kornia_rs-0.1.8-cp39-cp39-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 23b4aed00ee6d34300e6e2406ddb130a3ef07af7698a6aaf86a08b64cfe149b5 |
|
MD5 | a3448e8c8a143ab3799141444ea90ed6 |
|
BLAKE2b-256 | 2f3b348878efd6204855c4b717b09535f430fdb02016a1067810f090c82c59d5 |
File details
Details for the file kornia_rs-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c7555eb7f5586a5ad4e0cf528d972b06335cc9cde429a8bb0115ef876d9e105e |
|
MD5 | 6c090e80255c4a9f8fd10e8a5d4e8776 |
|
BLAKE2b-256 | 1b265f8d319eff97223239330577c060b5eb94cbb072926a532f2ff119f16cd1 |
File details
Details for the file kornia_rs-0.1.8-cp38-cp38-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | d053bfbf4ef05c5225b5bcb04aca7ef03cd3e0bfbbeae4f08f8465577f196880 |
|
MD5 | a1afe4fdbf338b0f9cdb857eece9c8d5 |
|
BLAKE2b-256 | b9df5177ee1cbc07fd7ea9cd9d91f532f90c8fe04398068e001c6c7233a95bed |
File details
Details for the file kornia_rs-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 77af8b8758db1edf59fdbf1c1e2a62bda79f76317e7f61854be4ada38d8a96cc |
|
MD5 | 97b79698eb2b61c96ab79f674b1a2747 |
|
BLAKE2b-256 | 06cd5ca1338b64572a4f05f9e861a977bf60793bbc30d9183b827dd53659b930 |
File details
Details for the file kornia_rs-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9405009b248221c01c124c6c3d48c6a3e624fad4103a5b006a4289b0fbfad9cd |
|
MD5 | 55dbec286e8d59bf1892a26e64c26c2a |
|
BLAKE2b-256 | 4b83adffb59ec01015b0bfd3bd1326302e14b2e814ad41b4b4ee4225d9d486a4 |
File details
Details for the file kornia_rs-0.1.8-cp38-cp38-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 66590d87b75ff38656c5976718c875536a1526549041fc29114db31202574114 |
|
MD5 | ae25bc7beb31f9e0df116304eea0fb97 |
|
BLAKE2b-256 | 8936b8996124425002022f6caff1c574f07142b0b658f04e1bd89902a663e560 |
File details
Details for the file kornia_rs-0.1.8-cp38-cp38-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 420f89bbe13d9a83dc82e71cb543182b7104dcf7ab40da36c5bbfca1683d7ccc |
|
MD5 | c8c717e38cb06a6b7d0d99a41fe87a76 |
|
BLAKE2b-256 | 6f3853573ceb8f97372bbb1d999fc63ecf640cb5809275ccdd934f396b72a56d |
File details
Details for the file kornia_rs-0.1.8-cp37-cp37m-win_amd64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp37-cp37m-win_amd64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4d846492d6651c3e04205c04cbc21e3b37122c0ce5208fe40f1ed367d07257e1 |
|
MD5 | c7d99b3811bfb0ee1b688b9f439881e8 |
|
BLAKE2b-256 | ae2b1d6ed91bddd52191e844613799f762a2e7277556dcde43e5b905c9c8fc57 |
File details
Details for the file kornia_rs-0.1.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp37-cp37m-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 2.1 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 8d42a21858fbc416669bc6fd3a31ad1082733a288e03c906cad44945bccd6d60 |
|
MD5 | 5ad41d988176cfb496f0d43d650b1cb1 |
|
BLAKE2b-256 | 59eb439d1328d74a228b59340934a649992504c41342b66968b5300da2702665 |
File details
Details for the file kornia_rs-0.1.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp37-cp37m-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 1.8 MB
- Tags: CPython 3.7m, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 992d04a63f382185424127f29ad8db8e258a6d906c6d9c29529e46ca59d4ab43 |
|
MD5 | a1d8c5ea6a395c9491cb78f4de570b51 |
|
BLAKE2b-256 | dce184a7dabf4196f13df7fc97e3757d2297a3796cd09c7e35623c73f3dab55f |
File details
Details for the file kornia_rs-0.1.8-cp37-cp37m-macosx_11_0_arm64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp37-cp37m-macosx_11_0_arm64.whl
- Upload date:
- Size: 1.7 MB
- Tags: CPython 3.7m, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 58f8b6ed43e08d04d77a09573f7904d62046b9b8df53b537ffd3ff94a495b746 |
|
MD5 | 78b1ffb38045e83a63ffc828ad914cf8 |
|
BLAKE2b-256 | 7a73b000d1122fa692782c9fd3e369acc9301dc0276432e26e6544e11d170200 |
File details
Details for the file kornia_rs-0.1.8-cp37-cp37m-macosx_10_12_x86_64.whl
.
File metadata
- Download URL: kornia_rs-0.1.8-cp37-cp37m-macosx_10_12_x86_64.whl
- Upload date:
- Size: 1.9 MB
- Tags: CPython 3.7m, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.8.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | db56ba011f96cb15139a00828370b587e0a0a4287c7d8f004bf1b97e7581e341 |
|
MD5 | 43d55f9744b3e3bb7689b44260b25199 |
|
BLAKE2b-256 | b6ee9460360b052d5e91a5adcab11d6fe58dc188efe7f4a0592a550e9132a10e |