Low level implementations for computer vision in Rust
Project description
kornia-rs: low level computer vision library in Rust
English | 简体中文
The kornia crate is a low-level computer vision library for Rust 🦀
Fast, thread-safe image I/O and processing with a single API that runs on the CPU or an NVIDIA GPU — the same Image and operators dispatch on where the data lives. It hands results to PyTorch and TensorRT with no host copy (DLPack, CUDA Array Interface), and fuses a camera frame into a normalized model input in one CUDA kernel — built for real-time pipelines.
📚 Table of Contents
- Getting Started
- Features
- Installation
- Examples
- Python Usage
- GPU / CUDA
- Development
- Contributing
- Citation
Getting Started
Quick Example
The following example demonstrates how to read and display image information:
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_rgb8("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
- 🦀 Written in Rust: memory- and thread-safe, no GIL — usable from the free-threaded Python build.
- ⚡ Fast image I/O and processing: libjpeg-turbo decoding and SIMD (NEON/AVX2) kernels.
- 🎯 One API, CPU or GPU: the same
Imageand operators dispatch on residency — no separate GPU types. - 🔌 Zero-copy ML interop: DLPack and
__cuda_array_interface__to and from PyTorch, plus numpy views. - 🎥 Real-time ready: V4L2 camera capture and a fused NV12/YUYV → normalized CHW CUDA kernel for inference.
- 🐍 Python bindings via PyO3/Maturin, packaged for Linux (amd64/arm64, incl. Jetson), macOS and Windows; the same wheel is CPU-only or activates CUDA when an NVIDIA GPU is present.
- Supported Python versions are 3.8 through 3.14, including the free-threaded (3.13t/3.14t) build.
Supported image formats
- Read images from AVIF, BMP, DDS, Farbfeld, 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
🦀 Rust
Add the following to your Cargo.toml:
[dependencies]
kornia = "0.1"
Alternatively, you can use each sub-crate separately:
[dependencies]
kornia-tensor = "0.1"
kornia-tensor-ops = "0.1"
kornia-io = "0.1"
kornia-image = "0.1"
kornia-imgproc = "0.1"
kornia-3d = "0.1"
kornia-apriltag = "0.1"
kornia-vlm = "0.1"
kornia-bow = "0.1"
kornia-algebra = "0.1"
🐍 Python
pip install kornia-rs
A subset of the full rust API is exposed. See the kornia documentation for more detail about the API for python functions and objects exposed by the kornia-rs Python module.
The kornia-rs library is thread-safe for use under the free-threaded Python build.
System Dependencies (Optional)
Depending on the features you want to use, you might need to install the following dependencies in your system:
v4l (Video4Linux camera support)
sudo apt-get install clang
turbojpeg
sudo apt-get install nasm
gstreamer
sudo apt-get install libgstreamer1.0-dev libgstreamer-plugins-base1.0-dev
Note: Check the gstreamer installation guide for more details.
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 for visualization.
For more examples and use cases, check out the examples directory, which includes:
- Image processing operations (resize, rotate, normalize, filters)
- Video capture and processing
- AprilTag detection
- Feature detection (FAST)
- Visual language models (VLM) integration
- And more...
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_rgb8("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::interpolation::InterpolationMode::Bilinear,
)?;
println!("gray_resize: {:?}", gray_resized.size());
// create a Rerun recording stream
let rec = rerun::RecordingStreamBuilder::new("Kornia App").spawn()?;
rec.log(
"image",
&rerun::Image::from_elements(
image_viz.as_slice(),
image_viz.size().into(),
rerun::ColorModel::RGB,
),
)?;
rec.log(
"gray",
&rerun::Image::from_elements(gray.as_slice(), gray.size().into(), rerun::ColorModel::L),
)?;
rec.log(
"gray_resize",
&rerun::Image::from_elements(
gray_resized.as_slice(),
gray_resized.size().into(),
rerun::ColorModel::L,
),
)?;
Ok(())
}
Python Usage
Reading Images
Load an image, which is converted directly to a numpy array to ease the integration with other libraries.
import kornia_rs as K
import numpy as np
import torch
# load a JPEG with libjpeg-turbo
img: np.ndarray = K.io.read_image_jpeg("dog.jpeg", "rgb")
# or read any supported format
# img: np.ndarray = K.io.read_image("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)
Writing Images
Write an image to disk:
import kornia_rs as K
import numpy as np
# load a JPEG with libjpeg-turbo
img: np.ndarray = K.io.read_image_jpeg("dog.jpeg", "rgb")
# write the image to disk (mode, JPEG quality)
K.io.write_image_jpeg("dog_copy.jpeg", img, "rgb", 95)
Image — PIL-style class with uint8 + uint16 support
kornia_rs.image.Image mirrors PIL's fromarray / save / load / decode
and natively holds uint16 for depth maps and scientific imagery
(lossless via PNG-16):
import io
import numpy as np
from kornia_rs.image import Image
# Bit depth is auto-detected from the numpy dtype.
rgb = np.random.randint(0, 255, (480, 640, 3), dtype=np.uint8)
depth = np.full((480, 640), 1500, dtype=np.uint16) # mm
rgb_img = Image.fromarray(rgb)
depth_img = Image.fromarray(depth)
# In-memory encode for transit (Zenoh / MCAP / gRPC).
png16_bytes = depth_img.encode("png") # lossless on uint16
# Save to disk (format from extension), or to any file-like (PIL parity).
rgb_img.save("dog.png")
buf = io.BytesIO(); rgb_img.save(buf, format="jpeg")
# Decode auto-detects bit depth from the file header.
back = Image.decode(png16_bytes, mode="L")
assert back.dtype == np.uint16
Encoding and Decoding (legacy, jpeg-only)
The original ImageEncoder/ImageDecoder pair is still available for
JPEG-only workflows that want the explicit turbojpeg backend object:
import kornia_rs as K
img = K.io.read_image_jpeg("dog.jpeg", "rgb")
image_encoder = K.io.ImageEncoder()
image_encoder.set_quality(95)
img_encoded: list[int] = image_encoder.encode(img)
image_decoder = K.io.ImageDecoder()
decoded_img: np.ndarray = image_decoder.decode(bytes(img_encoded))
Image Resizing
Resize an image using the kornia-rs backend with SIMD acceleration:
import kornia_rs as K
# load image with kornia-rs
img = K.io.read_image_jpeg("dog.jpeg", "rgb")
# resize the image
resized_img = K.imgproc.resize(img, (128, 128), interpolation="bilinear")
assert resized_img.shape == (128, 128, 3)
GPU / CUDA
The published wheels are GPU-capable but load CUDA lazily: the same wheel runs on
CPU when no GPU is present and uses the GPU when one is. The GPU path needs an
NVIDIA driver (libcuda) and nvrtc from the CUDA toolkit; without them the CPU
ops keep working.
Device pixels use the same Image type. .device reads "cpu" or "cuda:{id}",
.to_cuda(stream) uploads, .cpu() downloads. Color ops live under
kornia_rs.imgproc and dispatch on residency: a device Image runs the CUDA
kernel, a host Image or numpy array runs the CPU kernel.
import numpy as np
import kornia_rs as K
from kornia_rs.image import Image
from kornia_rs.cuda import Stream
if K.cuda.is_available():
rgb = np.random.randint(0, 255, (480, 640, 3), dtype=np.uint8)
img = Image.from_numpy(rgb).to_cuda(Stream.default()) # -> "cuda:0"
gray = K.imgproc.gray_from_rgb(img) # runs on the GPU
out = gray.cpu().numpy() # -> host, (480, 640, 1)
GPU color conversions (gray_from_rgb, bgr_from_rgb, hsv_from_rgb,
lab_from_rgb, ycbcr_from_rgb, sepia_from_rgb, apply_colormap, …) and the
fused Preprocessor are the GPU entry points. Tensors cross to PyTorch with no
copy through DLPack (torch.from_dlpack) and __cuda_array_interface__.
Production: GPU-resident camera → model
Preprocessor fuses resize, normalize and HWC→CHW into one CUDA kernel per
frame. It emits a device tensor that feeds an inference engine with no host copy
— the path for real-time camera pipelines.
import torch
from kornia_rs import Preprocessor, IMAGENET_MEAN, IMAGENET_STD
from kornia_rs.cuda import Stream
# One kernel per frame: NV12 -> normalized fp16 [1, 3, 640, 640] on the GPU.
pre = Preprocessor(mode="letterbox", format="nv12", f16=True,
mean=IMAGENET_MEAN, std=IMAGENET_STD, stream=Stream.default(0))
t = pre.run(nv12_frame, 1920, 1080, 640, 640) # device Tensor
x = torch.from_dlpack(t) # zero-copy handoff to PyTorch
# TensorRT: ctx.set_tensor_address("images", t.data_ptr)
The same one-call-per-residency model holds in Rust — convert picks CPU or GPU
from where the images live:
let stream = CudaContext::new(0)?.default_stream();
let rgb = Rgb8::from_size_vec(size, data)?.to_cuda(&stream)?; // device image
let mut gray = Gray8::zeros_cuda(size, &stream)?;
rgb.convert(&mut gray)?; // runs on the GPU
Full pipelines: examples/cuda_camera_preprocess
(V4L2 camera → fused CUDA preprocess) and
kornia-py/examples/preprocess_to_inference.py
(NV12 → fused preprocess → ResNet-18 / TensorRT, GPU-resident end to end).
🧑💻 Development
Prerequisites
Before you begin, ensure you have rust and python3 installed on your system.
Setting Up Your Development Environment
-
Install Rust using rustup:
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
-
Install
pixifor package and environment management:curl -fsSL https://pixi.sh/install.sh | bash
-
Clone the repository to your local directory:
git clone https://github.com/kornia/kornia-rs.git
-
Install dependencies using pixi:
pixi install
Available Commands
You can check all available development commands via pixi task list:
pixi run rust-check # Check Rust compilation (all targets)
pixi run rust-clippy # Run clippy (all targets, warnings as errors)
pixi run rust-fmt # Format Rust code
pixi run rust-fmt-check # Check Rust formatting
pixi run rust-lint # Run all Rust lints (fmt + clippy + check)
pixi run rust-test # Run Rust tests
pixi run rust-test-release # Run Rust tests (release mode)
pixi run rust-clean # Clean Rust build artifacts
pixi run py-build # Build kornia-py for development
pixi run py-build-release # Build kornia-py for release
pixi run py-test # Run pytest
pixi run cpp-build # Build C++ library (debug)
pixi run cpp-test # Build and run C++ tests
🐳 Development Container
This project includes a development container configuration for a consistent development environment across different machines.
Using the Dev Container:
- Install the
Remote - Containersextension in Visual Studio Code - Open the project folder in VS Code
- Press
F1and selectRemote-Containers: Reopen in Container - VS Code will build and open the project in the containerized environment
The devcontainer includes all necessary dependencies and tools for building and testing kornia-rs.
🦀 Rust Development
Compile the project and run all tests:
pixi run rust-test
To run tests for a specific package:
pixi run rust-test-package <package-name>
To run clippy linting:
pixi run rust-clippy
🐍 Python Development
Build Python wheels using maturin:
pixi run py-build
Run Python tests:
pixi run py-test
💜 Contributing
We welcome contributions! Please read CONTRIBUTING.md for:
- Coding standards and style guidelines
- Development workflow
- How to run local checks before submitting PRs
AI Policy
Kornia-rs accepts AI-assisted code but strictly rejects AI-generated contributions where the submitter acts as a proxy. All contributors must be the Sole Responsible Author for every line of code. Please review our AI Policy before submitting pull requests. Key requirements include:
- Proof of Verification: PRs must include local test logs proving execution (e.g.,
pixi run rust-testorcargo test) - Pre-Discussion: All PRs must be discussed in Discord or via a GitHub issue before implementation
- Library References: Implementations must be based on existing library references (Rust crates, OpenCV, etc.)
- Use Existing Utilities: Use existing
kornia-rsutilities instead of reinventing the wheel - Error Handling: Use
Result<T, E>for error handling (avoidunwrap()/expect()in library code) - Explain It: You must be able to explain any code you submit
Automated AI reviewers (e.g., @copilot) will check PRs against these policies. See AI_POLICY.md for complete details.
Community
This is a child project of Kornia.
- 💬 Join our community on Discord
- 💖 Support the project on OpenCollective
- 📖 Read the full documentation
- 🦀 Browse the Rust API docs
Citation
If you use kornia-rs in your research, please cite:
@misc{2505.12425,
Author = {Edgar Riba and Jian Shi and Aditya Kumar and Andrew Shen and Gary Bradski},
Title = {Kornia-rs: A Low-Level 3D Computer Vision Library In Rust},
Year = {2025},
Eprint = {arXiv:2505.12425},
}
Project details
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 Distributions
Built Distributions
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314t-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314t-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
79b4760df55607be619497fa554edd6d9059f039330200854cde13d3beaa054f
|
|
| MD5 |
e06d6a1d26e3686d819e7cf4c8d7e90f
|
|
| BLAKE2b-256 |
eeef65ff3d981f73c0874e7bd025e094f503a3fb0511c7134b363eab843374f8
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
619a594f1b76e3f83b6956f973bfef6d51a6ac9bcee3fabd00959e9aee86058f
|
|
| MD5 |
b9992ff05d676fde3e79cab8281dde9d
|
|
| BLAKE2b-256 |
d1a85788e8f8fa8ff33970b7787b7e64a81c359c6dd64ac9c003edb6e0047555
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.14t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c3a37d66d60396490fd09e8b4e058284c11f117131d4f54ce5f6f2921edc5912
|
|
| MD5 |
0abe079a2f01e064f67ab903d711a711
|
|
| BLAKE2b-256 |
eef7ef964aed3411ae1e7831ab64f7ecfdf95710238f817a2283b6580927d651
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314t-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314t-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f461612cf7d7a46318b950c90819083969a276b63b59268ce882ade2ddb0703c
|
|
| MD5 |
cd91419a66804f378f705c64afbd6c28
|
|
| BLAKE2b-256 |
0fb6a3b838da6cc8aea16b252c473c35e86d0f7adc07b7d81ce7b88a71d0dd4a
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d1ab5d1d936e20ff1a9e34d32f9610b05d04fa54dd6fa208afb890a18e964744
|
|
| MD5 |
dbe7c8b926fa4024f887259e02b3ad5d
|
|
| BLAKE2b-256 |
e3dc73062bea7c58fdc7d349e0df959c894e9236df38414a767b620296297d8d
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.14, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
740f21008d7006e64bcf6dc07536336423ee76b10570a9d4b17a8582b874a3e3
|
|
| MD5 |
aa484a226bae9a409d2395bcb19b6696
|
|
| BLAKE2b-256 |
deea5030df517cbf772e7cb6ee9b3dd6b596bbb59ba379b927bda43c31000a03
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
78d2d83f2e6703a62011a1129bb53d9d6bdbb7fb42f9315923a28949dc65f9a1
|
|
| MD5 |
c7063f46f939296fddcf4b92d88b18f6
|
|
| BLAKE2b-256 |
63bd27cc4a6e69c250d5260b72bb5c8c61deec142bb60ddc87b297c34446f1e8
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.14, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d160b967e90587e433a4cd2c3d3cf22c203dffa9bfb6ac59ec0150e042353292
|
|
| MD5 |
5aba4b72fbaff0c955c15edc5550ee79
|
|
| BLAKE2b-256 |
3a2f97a65ec01dae5a74b112057b0b3f49e1c7aa36f7a586692935ee9ed6b3c3
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.14, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e005953b547d5794247be9f7a1711620aebc0c03fd9886a9234a4502a7f19e8a
|
|
| MD5 |
4c934f0de44e6471849b016d35e807d9
|
|
| BLAKE2b-256 |
7a0eddb7eadd244ad9794aa00f30fe0e12aaa456d3721686196301e006db646a
|
File details
Details for the file kornia_rs-0.1.15rc5-cp314-cp314-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp314-cp314-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.14, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5beaf1e6250ea6eb203e674a87d85f176a676042777300e3a9b73821ba47f791
|
|
| MD5 |
1278b1e161ad39803742e389d4027bbb
|
|
| BLAKE2b-256 |
0ed9e02fe0a3ea6c134a402faa123fd28fe6dc59e6d07660cffe2c1a13b1951d
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313t-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313t-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13t, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
449c64b25f5de2ad7dee6653374a14410d9e0f5b649af8d32ce783f74356abb4
|
|
| MD5 |
ecf7715d245b7ab9136474af5b5d53cb
|
|
| BLAKE2b-256 |
57210c14eae941f4e5f46b3cacfd414963d340176fd19b18be77aba704e7869c
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0e1bdee2c9708c73e22e3badb45d920edad6142abd41bca1706e6d1e96e82029
|
|
| MD5 |
8f42966df5d1b8e7eefe46c9a64480d3
|
|
| BLAKE2b-256 |
dcf1314617d27c151ed5bd74ed7ec145ed8d0060a37d5e09791d628e45b1f413
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.13t, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
dc736169a634db653c14e9e8aea5fbfb3a0278cb5b737c9320f37ef511c9d1f3
|
|
| MD5 |
0d0e8125e5e2e949bae2283af6ce0c31
|
|
| BLAKE2b-256 |
55a575139d113024bedda8d8d9a835f510a946aa9a22d077e725bc9f1ee2bc36
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313t-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313t-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.13t, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a33d85c924e26fa46f8224d957d067dbe82e966f59847d66425805dfca1ccf08
|
|
| MD5 |
c0cf6f1464bd43710a5b3610920daa86
|
|
| BLAKE2b-256 |
00dbfdd96b1d484cefa295c219de97b901598b970ca532f9d6de8aff3289dc55
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313t-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313t-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13t, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f97eee237826869f7f478e6ed63cfc681ebb1803b722fdbdca122db36bbef46f
|
|
| MD5 |
9d9619b62bf5db92a6034713ac09fb19
|
|
| BLAKE2b-256 |
1c443b3fc3168b60ce2e4968e8113045f1b0ecf532137e7fbb5067f6fb1a0046
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.13, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fcbcc756dee0f9a7df63b21132764ae682f7f13a7104b50e72006b80d283589a
|
|
| MD5 |
126b8781912ee62ee4e61b2bb04ef653
|
|
| BLAKE2b-256 |
f027af8681611bd0812c29fc3384406619e81614e41df4732030142ced974fc2
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a60532de695c5611bf580a853950a47b7327db2aefc92db589e98d249a44e258
|
|
| MD5 |
a804a1bc567fa2897430050170a2e006
|
|
| BLAKE2b-256 |
e0a4f4994109d822ebcc16e4692ae11f0070d4eed7550152e1a44fcc5cd3c930
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.13, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7efb2e5431c92fb0e63dc019bef4113e54a1b7d650d1c0587b59d94807abf709
|
|
| MD5 |
637ce40f21f47ee3e8f5a759b21b2792
|
|
| BLAKE2b-256 |
cedaa186d618cb4a777b1c8d63ff6ba558f3ec52b9d3bf218e7325c9e62dce35
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.13, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5f0644b4cb32406eef219c17c87003e5e93e00a1136ceb316c04ce2ef7e9055c
|
|
| MD5 |
34adf686e9d9c65dd0e64341a95ec08c
|
|
| BLAKE2b-256 |
bcafa3934762a182aee3bb644fbbce66da3b2462dcdd275a6938c301baadd5e0
|
File details
Details for the file kornia_rs-0.1.15rc5-cp313-cp313-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp313-cp313-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.13, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d15e02444985bb6e232a7811c982f921e4be13c00933fed566fe074d5876c2fd
|
|
| MD5 |
77f8fb459e6427a9d269df3d57e8cb15
|
|
| BLAKE2b-256 |
b904c7252edca03bfcf5c6e74aea23781542ed98284cbe27900b245c42de0f45
|
File details
Details for the file kornia_rs-0.1.15rc5-cp312-cp312-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp312-cp312-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.12, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
93d837e3c01516ee2a3a3d114d668963ad3f5a49a822c786811e3d7ff59239b7
|
|
| MD5 |
9d080b9f445b6c8581fff3f32a554ec9
|
|
| BLAKE2b-256 |
d133c31b8439ca1bec776d4b91eba9c220c40480a9855b8c8c8e521207e7ab20
|
File details
Details for the file kornia_rs-0.1.15rc5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
51c09a545214a3460210eb769269c4e8132426ef64adfbd65c70b9588de4484d
|
|
| MD5 |
f3f282fc4930bd0e7a8ddde8a5dc5841
|
|
| BLAKE2b-256 |
dc6a56962724e7aea15b82b7fc5bf927a1aa63a1a11695a52b94969e6ba9e883
|
File details
Details for the file kornia_rs-0.1.15rc5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.12, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7c3fb616c1585b6d338fdb12b4665a82fe289d398fe4a2edf63627ef3a6f9dc
|
|
| MD5 |
be9f5b34c9d840a5f56ad5c1936d8a32
|
|
| BLAKE2b-256 |
f03b879af85dc2ef82160d244ee25e1700d0e22000cb755084bb3f2f6610d423
|
File details
Details for the file kornia_rs-0.1.15rc5-cp312-cp312-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp312-cp312-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.12, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
748bcdeff4496846aa0480b83ea6e7c6280c20ae16f95bee7fd1f962641f67fa
|
|
| MD5 |
94731d6e68f16d5506da6722492d501d
|
|
| BLAKE2b-256 |
ffe085abee72cf145eee894d42096d4d44d48b336a734319c299fe43532b5bd3
|
File details
Details for the file kornia_rs-0.1.15rc5-cp312-cp312-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp312-cp312-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.12, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0f6e9e78bfa580d09bc59f969ca2601c7253ae7a9b425fdfa97c9520b5ce01c3
|
|
| MD5 |
f6fc39a0604fafaef0a5ef172e01e95e
|
|
| BLAKE2b-256 |
44f2018e704b7f6ffb7b75feb70961374fb3c11694acd6dfce4d25fded7359ac
|
File details
Details for the file kornia_rs-0.1.15rc5-cp311-cp311-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp311-cp311-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.11, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2fe46e1d041112911a9240967c85b9b84e8b5239bcdde47e25c2fb8df685c3ba
|
|
| MD5 |
bdec0aadd77f199fc75e7193d97c4490
|
|
| BLAKE2b-256 |
f4c34af9271fc916205690b2ffdc68f2154aa21cb9955dedf2bd15acba4f06c3
|
File details
Details for the file kornia_rs-0.1.15rc5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
99b4ac3d54053daf9e55d6e80666ac2d1449ec707b6089845091d606f60d29ab
|
|
| MD5 |
f99eb8db17e584015232b53107af4507
|
|
| BLAKE2b-256 |
a494b4124683510f2124aded04f4be6f95a451a80ae01a4eaa30dda248f22da3
|
File details
Details for the file kornia_rs-0.1.15rc5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.11, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
48172cd7adfae9a0f107e8bff1977c33c2a993b252c69784e5734e68915fe13d
|
|
| MD5 |
6229b90dc51af62fe7f19714700f3d68
|
|
| BLAKE2b-256 |
f66d2359760251e40bb9729c591e56a75e13b6243c0699d8cb56951353756df8
|
File details
Details for the file kornia_rs-0.1.15rc5-cp311-cp311-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp311-cp311-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.11, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
651a5668a3b650504841202160e58e6fbfc5e5ee61a5d46af0a9b29a052cee2b
|
|
| MD5 |
b9eef53d60a1283169f037bb298f4cc9
|
|
| BLAKE2b-256 |
750f4e6f007e972f1834448f9751332becd47ae9a6c368ef142138412a018283
|
File details
Details for the file kornia_rs-0.1.15rc5-cp311-cp311-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp311-cp311-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.11, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f3547bc3f0b4aa21792faffcee78f0cb07c68c79c5a872af1aa85e1403d94181
|
|
| MD5 |
2e02a63b686d59754bec2245b8314263
|
|
| BLAKE2b-256 |
7e01f8dcf3e94c60a84cfa2ce3c00f1621a0e2644f436d596f8fca4d1b05a837
|
File details
Details for the file kornia_rs-0.1.15rc5-cp310-cp310-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp310-cp310-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.10, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f722fce1bac2181bfe6994506f2aa8548e065715bc94d0894080669e50fc748f
|
|
| MD5 |
dd9df37325d365610b4c7f83102e1e34
|
|
| BLAKE2b-256 |
d3bd924189e7ecca50d78e0b3b3fe25fec3db267852bdcaf21270557ce9703e2
|
File details
Details for the file kornia_rs-0.1.15rc5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d9e17731ea09eda53d438607e60a6cb5673edcc7b72ee0a618260f1710861e7f
|
|
| MD5 |
b9b4990561de5fdfa31309e43e82250e
|
|
| BLAKE2b-256 |
eb3327021ca2c193b32017c8802e90d847f34d79d8fb68c02144e741c9dc7a20
|
File details
Details for the file kornia_rs-0.1.15rc5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.10, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ebf319945a07a4c696118dede3abf7184dd9711908fde22726fa867e903ca95
|
|
| MD5 |
cef8fb6c2b5d711c8e9e6c4bb6ca274f
|
|
| BLAKE2b-256 |
e8f1ba2b290400f205fe24aa60b27dbc7a0cbf185312ca9c4d3c4d96f3b754b3
|
File details
Details for the file kornia_rs-0.1.15rc5-cp310-cp310-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp310-cp310-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.10, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a7c2f738ac56089f61d726c063cd29c20b06e2eb5c8a8e6d8b2e2c2a2db1ae9a
|
|
| MD5 |
882c82808f44a3fda605b7a7ded4b9d9
|
|
| BLAKE2b-256 |
20ed76aa93785c69a4a608d8803ec28e356ce4159334f47f9680b57a390e600c
|
File details
Details for the file kornia_rs-0.1.15rc5-cp310-cp310-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp310-cp310-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.10, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f79e11054996ece207c27f445375b6af51f93161964054f71e613f067f376851
|
|
| MD5 |
669d2a9e0acf6d5a99220c348fcd1ad1
|
|
| BLAKE2b-256 |
34aea0873c554d68802be0ae5262bae64a0a1239e49f55f71757cba3dfde25b4
|
File details
Details for the file kornia_rs-0.1.15rc5-cp39-cp39-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp39-cp39-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.9, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
69bd3fda03600ba777b6d700bd1d0dee56c94beefb8c44130bbdc112636834fe
|
|
| MD5 |
45b2431894a4cbbf7a1e276f77e207b9
|
|
| BLAKE2b-256 |
2a9b33e897fe9a41ff5799ec01071ddbb81b0cd6ff16f66d2bc9a4fd8ec63308
|
File details
Details for the file kornia_rs-0.1.15rc5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
30c68c9f3635291afdd328c28ff7da34c5a2140aebf6356a324693b797979eb7
|
|
| MD5 |
3230e98ce596443d6b6adad93d85310c
|
|
| BLAKE2b-256 |
5352c1c2115eb89c36e9da051391394720b6f44672dfebb721ec64402fa70ae6
|
File details
Details for the file kornia_rs-0.1.15rc5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.9, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fe147d1abad2a1ebbe4bc933fba860d6cea37e684327bcbe3f4071dbd9b8f45f
|
|
| MD5 |
53732a7d30e7d947157b747fb2c3dfeb
|
|
| BLAKE2b-256 |
15c4998b44f905080339a4b87d918cfcbfc1a841dc6571894a6ab103f8913f00
|
File details
Details for the file kornia_rs-0.1.15rc5-cp39-cp39-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp39-cp39-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.9, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
90037657aab216ae7717db5155f6d37bd242644b7a39d55a7993486e1cdb95e0
|
|
| MD5 |
68456d22440510aacfb6e36ff6259374
|
|
| BLAKE2b-256 |
351a18c50bbff235611ad9f38b4a9d0d77c85a488bdf19c133d8678c7fa05d6b
|
File details
Details for the file kornia_rs-0.1.15rc5-cp39-cp39-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp39-cp39-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.9, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
aae5b95031556ca5c912dd4a0f670d41ce0730ce100efde08a55c5f7acf0577e
|
|
| MD5 |
fad7d4edcfd79299447967ef2cc481e3
|
|
| BLAKE2b-256 |
3874f55788bb1887c7355e0c4e533f7bfd05e948923622995c6877f318e95de1
|
File details
Details for the file kornia_rs-0.1.15rc5-cp38-cp38-win_amd64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp38-cp38-win_amd64.whl
- Upload date:
- Size: 4.1 MB
- Tags: CPython 3.8, Windows x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
daf6835995eb08c09425401d4b06ba20abd4dba264b8a6f17bcdf5695ea20afa
|
|
| MD5 |
d520ead0f350116d95b0ff3ea1f25d7a
|
|
| BLAKE2b-256 |
9cc63c832b89e1c2422727001ac8c762a6f258a2d5721432c23e153f757c2be6
|
File details
Details for the file kornia_rs-0.1.15rc5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
- Upload date:
- Size: 4.9 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ef3a3d9400819ae8514b44241e2306d674801c5edb20396dda0e8639545b8596
|
|
| MD5 |
6053687d8ae9c1c5694883016918cc3e
|
|
| BLAKE2b-256 |
b626b0a0259d4c5ea80bc14b1f126fad8cf5cbcb427c1804a08864f581eccc27
|
File details
Details for the file kornia_rs-0.1.15rc5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
- Upload date:
- Size: 4.3 MB
- Tags: CPython 3.8, manylinux: glibc 2.17+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
fae292b0a62f4b4878bec0ec0d439d9155780a0c06a46787a8d876e7de217f9c
|
|
| MD5 |
e33b3959c4f3ebcc09d1b0615ab62433
|
|
| BLAKE2b-256 |
16b3f8f2925c90851933706ecfc58ed1b439283e93e6a7e94832d4be69baa745
|
File details
Details for the file kornia_rs-0.1.15rc5-cp38-cp38-macosx_11_0_arm64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp38-cp38-macosx_11_0_arm64.whl
- Upload date:
- Size: 3.8 MB
- Tags: CPython 3.8, macOS 11.0+ ARM64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0d19f663efe5b600b65e735e81053eef5ac580cf9875794e948ec6e826c5e92b
|
|
| MD5 |
1e2047d47324ea1a50d9843f26935a8c
|
|
| BLAKE2b-256 |
48cce21cbe313140f40ef7d0759ab3e7b9e4bd505028328db6523d446f3fe450
|
File details
Details for the file kornia_rs-0.1.15rc5-cp38-cp38-macosx_10_12_x86_64.whl.
File metadata
- Download URL: kornia_rs-0.1.15rc5-cp38-cp38-macosx_10_12_x86_64.whl
- Upload date:
- Size: 4.2 MB
- Tags: CPython 3.8, macOS 10.12+ x86-64
- Uploaded using Trusted Publishing? No
- Uploaded via: maturin/1.14.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
827a746eb4dd258f19c925edcd34465eeff5aac4b78f13c6ac7302932487a52f
|
|
| MD5 |
4cc546289c3a37493dbbb8e70cf6e265
|
|
| BLAKE2b-256 |
8e6f06ac25f2e799e83fec9e32d5d71e956e7c529563c2643f5eb7b4754c0f66
|