Skip to main content

kornia-rs: low level computer vision library in Rust

English | 简体中文

Crates.io Version PyPI version PyPI Downloads Crates.io Downloads Documentation License Discord

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

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 Image and 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(())
}

Screenshot from 2024-03-09 14-31-41

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

  1. Install Rust using rustup:

    curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
    
  2. Install pixi for package and environment management:

    curl -fsSL https://pixi.sh/install.sh | bash
    
  3. Clone the repository to your local directory:

    git clone https://github.com/kornia/kornia-rs.git
    
  4. 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:

  1. Install the Remote - Containers extension in Visual Studio Code
  2. Open the project folder in VS Code
  3. Press F1 and select Remote-Containers: Reopen in Container
  4. 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-test or cargo 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-rs utilities instead of reinventing the wheel
  • Error Handling: Use Result<T, E> for error handling (avoid unwrap()/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.

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},
}

Release files for kornia-rs 0.1.15

For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.

Built distributions (wheels)

Table of built distributions (wheels) for kornia-rs 0.1.15
File
kornia_rs-0.1.15-cp314-cp314t-win_amd64.whl CPython 3.14 CPython 3.14 free-threading Windows x86-64 Details
kornia_rs-0.1.15-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp314-cp314t-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp314-cp314t-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp314-cp314-win_arm64.whl CPython 3.14 CPython 3.14 Windows ARM64 Details
kornia_rs-0.1.15-cp314-cp314-win_amd64.whl CPython 3.14 CPython 3.14 Windows x86-64 Details
kornia_rs-0.1.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.14 CPython 3.14 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp314-cp314-macosx_11_0_arm64.whl CPython 3.14 CPython 3.14 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp314-cp314-macosx_10_12_x86_64.whl CPython 3.14 CPython 3.14 macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp313-cp313t-win_amd64.whl CPython 3.13 CPython 3.13 free-threading Windows x86-64 Details
kornia_rs-0.1.15-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp313-cp313t-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp313-cp313t-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 free-threading macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp313-cp313-win_arm64.whl CPython 3.13 CPython 3.13 Windows ARM64 Details
kornia_rs-0.1.15-cp313-cp313-win_amd64.whl CPython 3.13 CPython 3.13 Windows x86-64 Details
kornia_rs-0.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.13 CPython 3.13 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp313-cp313-macosx_11_0_arm64.whl CPython 3.13 CPython 3.13 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp313-cp313-macosx_10_12_x86_64.whl CPython 3.13 CPython 3.13 macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp312-cp312-win_arm64.whl CPython 3.12 CPython 3.12 Windows ARM64 Details
kornia_rs-0.1.15-cp312-cp312-win_amd64.whl CPython 3.12 CPython 3.12 Windows x86-64 Details
kornia_rs-0.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.12 CPython 3.12 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp312-cp312-macosx_11_0_arm64.whl CPython 3.12 CPython 3.12 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp312-cp312-macosx_10_12_x86_64.whl CPython 3.12 CPython 3.12 macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp311-cp311-win_arm64.whl CPython 3.11 CPython 3.11 Windows ARM64 Details
kornia_rs-0.1.15-cp311-cp311-win_amd64.whl CPython 3.11 CPython 3.11 Windows x86-64 Details
kornia_rs-0.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.11 CPython 3.11 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp311-cp311-macosx_11_0_arm64.whl CPython 3.11 CPython 3.11 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp311-cp311-macosx_10_12_x86_64.whl CPython 3.11 CPython 3.11 macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp310-cp310-win_amd64.whl CPython 3.10 CPython 3.10 Windows x86-64 Details
kornia_rs-0.1.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.10 CPython 3.10 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp310-cp310-macosx_11_0_arm64.whl CPython 3.10 CPython 3.10 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp310-cp310-macosx_10_12_x86_64.whl CPython 3.10 CPython 3.10 macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp39-cp39-win_amd64.whl CPython 3.9 CPython 3.9 Windows x86-64 Details
kornia_rs-0.1.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.9 CPython 3.9 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp39-cp39-macosx_11_0_arm64.whl CPython 3.9 CPython 3.9 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp39-cp39-macosx_10_12_x86_64.whl CPython 3.9 CPython 3.9 macOS 10.12+ x86-64 Details
kornia_rs-0.1.15-cp38-cp38-win_amd64.whl CPython 3.8 CPython 3.8 Windows x86-64 Details
kornia_rs-0.1.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ x86-64 Details
kornia_rs-0.1.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl CPython 3.8 CPython 3.8 Linux glibc 2.17+ ARM64 Details
kornia_rs-0.1.15-cp38-cp38-macosx_11_0_arm64.whl CPython 3.8 CPython 3.8 macOS 11.0+ ARM64 Details
kornia_rs-0.1.15-cp38-cp38-macosx_10_12_x86_64.whl CPython 3.8 CPython 3.8 macOS 10.12+ x86-64 Details

Total release size: 220.5 MB

Release files / kornia_rs-0.1.15-cp314-cp314t-win_amd64.whl

Download URL kornia_rs-0.1.15-cp314-cp314t-win_amd64.whl
Size 4.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
ca2af953bc606d80908d4886333d06a564b303e7e6b8213ca8bc39865f4a9edd
BLAKE2b-256 checksum
How to use checksums
d6b3831f9090841d6a457b4c87046f5f9db7fc55975640e46841c75925eb0684
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp314-cp314t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
c55ab113e4b71f4c7deaf83dca46a74e6bcfe4d547efe99aa5fe07f6acaf8e85
BLAKE2b-256 checksum
How to use checksums
6962899aea6955a3974cdab813b15cbfe4b4120679d3755de3c9233df7070f58
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp314-cp314t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.6 MB
Tags CPython 3.14 CPython 3.14 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
45d87ec4e6bf5caa1468893e1e81b884c783bea5fb21c12bcc22352e4afba48b
BLAKE2b-256 checksum
How to use checksums
00ba7a4b2ccd46b767d9ca4ed6d4226cc98e7916c794f0ed395f39d4e140288b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314t-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp314-cp314t-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
511cd3d98c477cd9738bef6b49e81ade9c0dc9a369d4ebb6698b98fb78bcffcc
BLAKE2b-256 checksum
How to use checksums
b0e33519fead8f8b7fc69a0288e6c65c189c313942dfd7388f2c8ec906fa0d98
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314t-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp314-cp314t-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.14 CPython 3.14 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
84d30ece5807b7a00589b56f5010b77ab4655fc58f31875076ca215d33d7b161
BLAKE2b-256 checksum
How to use checksums
c43d847b9d96d7ca0daa6f0be68cfdd96ede73dd43645e4fc39adc291eb70954
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314-win_arm64.whl

Download URL kornia_rs-0.1.15-cp314-cp314-win_arm64.whl
Size 3.8 MB
Tags CPython 3.14 Windows ARM64
SHA-256 checksum
How to use checksums
d146e4e5589abeae9f4e78dbea72d01ad4cab1b6a7fba84a7f5e4c422733f08e
BLAKE2b-256 checksum
How to use checksums
a03dbf2d77bfce77f2e536a4eb868a036e4605b4dd85c317366baeb1efcbf6f5
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314-win_amd64.whl

Download URL kornia_rs-0.1.15-cp314-cp314-win_amd64.whl
Size 4.3 MB
Tags CPython 3.14 Windows x86-64
SHA-256 checksum
How to use checksums
ea76e2944103d89efb30c16005f3e9e20ddf11fd4dec0df762aa3d99b79aecc7
BLAKE2b-256 checksum
How to use checksums
da27719bd54d2d93d865c85b580fcea2ebc14e2342ca6dd8fcd4de61ae962c88
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp314-cp314-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.14 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
be362f4f0a414ddc250817a3fad33880002075cdf46d3effd1e0d8855c3c0e01
BLAKE2b-256 checksum
How to use checksums
df221e800fdd667692f46e55298ce265a42261931d03feb681f2d6c0172f3083
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp314-cp314-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.6 MB
Tags CPython 3.14 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
616d1f3c62a362c51a7abf4630d152fcb4ac5ecf00f7d18053eb1edaf20f6bd0
BLAKE2b-256 checksum
How to use checksums
23ccc74b9ef2b0d47fa5a2d05ae18c522f6ea31ce3196b64521a9d03f24368b2
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp314-cp314-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.14 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
f07e000d62a40360f7b286757f5bf78692c5e0077306c4e780755b7efee17357
BLAKE2b-256 checksum
How to use checksums
e1b4149dfce4da6cabaeec0ae61731bc5a07bf65f1c22e8070ddc30afae8ff96
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp314-cp314-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp314-cp314-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.14 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
238dadfbb78d49209becd1b06494ea10cde694a5d77dbdf7b61d19eb1972261e
BLAKE2b-256 checksum
How to use checksums
5a285f714b458515684ac9d732bcc1522c7e0e8555c79edbfd32f450111acf5f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313t-win_amd64.whl

Download URL kornia_rs-0.1.15-cp313-cp313t-win_amd64.whl
Size 4.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Windows x86-64
SHA-256 checksum
How to use checksums
3eb65311b879523346f0b4ee2b1dfba151a51f51f392faedd92c940b0cbb0398
BLAKE2b-256 checksum
How to use checksums
5a32837b0e86bd4c6864e7ea177c2973eee552d74c588c3986aef17cb7a1c287
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3bc4d9b10f604e5e932890835a52cd8d2aaa0472728a51052058850d6e6d5e19
BLAKE2b-256 checksum
How to use checksums
86c4e185137cee1eec323738f1ff51009ac8af7a80100097cd15500e51517232
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.6 MB
Tags CPython 3.13 CPython 3.13 free-threading Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
94e2d314afb7850a832290afb5041d72161ab7abbc654041296273597db13528
BLAKE2b-256 checksum
How to use checksums
5910443767a9c4c2aaa1a891a6ca07aa333e7d79c36a3e84beeacdbb61be6fa8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313t-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp313-cp313t-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
453ddd864b2bff0b3388cda16844da91400946969b554d5c0c8e15e40f7ea2fb
BLAKE2b-256 checksum
How to use checksums
2ada2785a91e440184563f701cc4d515dae190ad40ea03ecdddd2ab7040064a0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313t-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp313-cp313t-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.13 CPython 3.13 free-threading macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
acc4ca3f09026c204c6d7e6a11ae9f2bc105cd378c49d77881f1975a0cb08853
BLAKE2b-256 checksum
How to use checksums
e35bb76d0d9e4c4352cc2c8d6a1edd1fde01564ae2aa81d670d5c0e3c795d27a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313-win_arm64.whl

Download URL kornia_rs-0.1.15-cp313-cp313-win_arm64.whl
Size 3.8 MB
Tags CPython 3.13 Windows ARM64
SHA-256 checksum
How to use checksums
7149acf544f7f692f0abca536a5a96595db39dca2f1caaecec13f30bdd99b08d
BLAKE2b-256 checksum
How to use checksums
06b81b10d5298a35a249f6bebc0e3e02d0ac0f806a076f25c541626fbf6f2828
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313-win_amd64.whl

Download URL kornia_rs-0.1.15-cp313-cp313-win_amd64.whl
Size 4.3 MB
Tags CPython 3.13 Windows x86-64
SHA-256 checksum
How to use checksums
40eb38d0027780f3ef837cff296c70385c9e5ba70ff8aebc3f9c2b5a5aad82cc
BLAKE2b-256 checksum
How to use checksums
59a2e0f9bfabf9c5f09d5b16ec46d17b4b06abb0a8cfac1dcc9fdaf5e46f14c0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.13 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
452bdab1a0543521239a620c9afcdb9ff3235094c8888e32cf1fafe2fa9ca573
BLAKE2b-256 checksum
How to use checksums
3f4c55ff90d22a7cb3c1b63fadde59336fe1e668c1ebfef1bfbdb6a933305df0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.6 MB
Tags CPython 3.13 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
5ed8be503210c623a3d42747290c380380f9d36fa986b0d416beae25e142cabf
BLAKE2b-256 checksum
How to use checksums
aa7137ef7cd0a3957a64a431f70186da9b588945585abef5aaad684c1c3b981a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp313-cp313-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.13 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
d19091553a4d458fc69748be3f16419caa3b42d3908d1e0fcf16ff34fd8b5e90
BLAKE2b-256 checksum
How to use checksums
2f068732b74707c46c7f154152e8750331ed1f62b51b0e28604268149ac495ad
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp313-cp313-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp313-cp313-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.13 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
9ec20e513d43ef3920f9f33fc5a6dee044eba98c524311a24d753dbcc6035702
BLAKE2b-256 checksum
How to use checksums
4aafb865d5d6c9e5c6c038b894663065bd0b1c7e80c39ca535b2324ee96b4dc4
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp312-cp312-win_arm64.whl

Download URL kornia_rs-0.1.15-cp312-cp312-win_arm64.whl
Size 3.8 MB
Tags CPython 3.12 Windows ARM64
SHA-256 checksum
How to use checksums
4237f7f4dfb1e9f2b560bed9e68206a4f5a45c25cfbf5353a63dd5d232a767d7
BLAKE2b-256 checksum
How to use checksums
11ada7b66db82958acfc2082bfc10d914116bc66b2071b7773db900d3570f826
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp312-cp312-win_amd64.whl

Download URL kornia_rs-0.1.15-cp312-cp312-win_amd64.whl
Size 4.3 MB
Tags CPython 3.12 Windows x86-64
SHA-256 checksum
How to use checksums
950707b46128d36fe57ded2df02b4b61f16790620f498d791dacebd128461471
BLAKE2b-256 checksum
How to use checksums
b8c1edbbea6e2762246438d22a4a797d7ac1b2048db949602328ee77452a0cea
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.12 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
a9a4a5262942199395a6ea03fc4beafce9299fa6fe6011deeb6fb20a2602f354
BLAKE2b-256 checksum
How to use checksums
56724a9502b5243667fae48cccbfbc00fb9a6fffb219494c84797d18a6d23f4d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.6 MB
Tags CPython 3.12 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
eccf8e5a330e037a9b6982a1075356758966e34b6c3e555b2d080e96e844fa30
BLAKE2b-256 checksum
How to use checksums
2ccb4d24e07c76cd1100897804f8055cebfd03558db119deb0abcf8bfb0c4113
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp312-cp312-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp312-cp312-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.12 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
c47ba0aa636ca6d13466afb5a35a0e048bb2b96d06dcd518ebd8fa2f2d9f7352
BLAKE2b-256 checksum
How to use checksums
abc515f4055a76f6af11ef18cc87a329d07a3cbaa53af229bf5a0d619c05a4f7
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp312-cp312-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp312-cp312-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.12 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
56035cf30627329c161275a79103bf3afb8111c99e23b36a8cd8cc6456b28382
BLAKE2b-256 checksum
How to use checksums
4193e026a0dabbadd555c5bd98603dc5bbbe3beb2b5850e35295efe609b0e25f
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp311-cp311-win_arm64.whl

Download URL kornia_rs-0.1.15-cp311-cp311-win_arm64.whl
Size 3.8 MB
Tags CPython 3.11 Windows ARM64
SHA-256 checksum
How to use checksums
d461d583e91a71037577f5932c3d7bcaf155b6e484d735b43088ef47c92907c5
BLAKE2b-256 checksum
How to use checksums
460b57de189ed3d390c3262502aa434e9b70956a918c73189432628fbb14f5e6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp311-cp311-win_amd64.whl

Download URL kornia_rs-0.1.15-cp311-cp311-win_amd64.whl
Size 4.3 MB
Tags CPython 3.11 Windows x86-64
SHA-256 checksum
How to use checksums
5a157c9f8d6ba3345027b26c6f03ff6c719a0c37d418558a0811ae50208123be
BLAKE2b-256 checksum
How to use checksums
40bce439f6531152e2bf502d3b3d393221cb20ad6e70f2ed775260045aa7e295
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.11 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
e3081bc9d95ccbbd050822724d6236d9a9cc32b3aa3dd412024532cb2ba4e4cf
BLAKE2b-256 checksum
How to use checksums
3897b827b368bd0811d4099fea4ce1843cf424c5f862241b60f93fd6a0576b23
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.7 MB
Tags CPython 3.11 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
36fd083ef2c8d8c63e0a3a874db130b32dd92511325826628f611f5dd7288413
BLAKE2b-256 checksum
How to use checksums
ab39482323025e5d754fd7078540a60a4f66758ab7ea03bf3a656cbd3d63f1a1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp311-cp311-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp311-cp311-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.11 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
9375a794b0b1667f044635b67d4135dd91e86ba381be4bffe7be0397ee2a8037
BLAKE2b-256 checksum
How to use checksums
f9df4354d34a3c07f4e8a0c2faf54c7e36a382ca1acecfb3d3bc4933f06100ba
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp311-cp311-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp311-cp311-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.11 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
689232c88c9420b6a371989e5612a3f87c34e023a95d871d99b817945543f312
BLAKE2b-256 checksum
How to use checksums
1b8d80fb4e145f8ec6e92492e53ddf2a4bb4be1f27eff7286d7353310db4d2cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp310-cp310-win_amd64.whl

Download URL kornia_rs-0.1.15-cp310-cp310-win_amd64.whl
Size 4.3 MB
Tags CPython 3.10 Windows x86-64
SHA-256 checksum
How to use checksums
67f9d668f6ca9332bd8debbca60fd1d93e901fc62ccbf720ea6ec24175f66332
BLAKE2b-256 checksum
How to use checksums
a62d338550c108cb8039842020fa4214c73a8103ce046f7944fa44dd1488f12a
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.10 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
972c550d9ae7aed94b0c797f5bdf701503fe7d9814f0c03d8236253c1bd4e377
BLAKE2b-256 checksum
How to use checksums
25ccc351283d289b4014c3b09d5d6328e7338fcafc477f6fd53e5e1c2b77c011
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.7 MB
Tags CPython 3.10 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
c1fe0999461d20d8215d534fe490426e805e35b2ade39e93bd6f26110823fe8e
BLAKE2b-256 checksum
How to use checksums
05c5f527eca6e2cf41c4bef95a6b9e05a415c5c50a115b5367aa212fafefbcc6
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp310-cp310-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp310-cp310-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.10 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7215defa911c6504280f133b88c2a0be5d9153ca7b0beb03996e51b3761155e5
BLAKE2b-256 checksum
How to use checksums
735514c7e83869240fa7ad8c7ba3efce7e1dab03fba55f8a352f628d86e0980d
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp310-cp310-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp310-cp310-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.10 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
3d9ea37b6f2a1813aaa86be11b8a2c6aa1695ac84ad62b94c6e281342db3e792
BLAKE2b-256 checksum
How to use checksums
e78ae2bcc2e6874352b70d4b5015ce72198859c89324eeea789aad68f9da4fb0
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp39-cp39-win_amd64.whl

Download URL kornia_rs-0.1.15-cp39-cp39-win_amd64.whl
Size 4.3 MB
Tags CPython 3.9 Windows x86-64
SHA-256 checksum
How to use checksums
5eaffcb771dba23a82390212d30d2e7ab866302d6e17a2316f037e93a88f9324
BLAKE2b-256 checksum
How to use checksums
379eee1949e1f71a6e53b94b62e6b88307b06093d776d49f4e275c3518d7d3cf
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp39-cp39-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.9 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
3a45c540ce3e3bb76e7bca1a1a49b46677eeace5cbdb2c1dc70020a6b8c50d0e
BLAKE2b-256 checksum
How to use checksums
664e626227c3e6a5e819c4edabfe4f59292fc59db411a899ac523bd1a4ee66d8
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp39-cp39-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.7 MB
Tags CPython 3.9 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
117e786b9f452b936d75521d16f817619275a85597e857ca21535ffbe938e7d2
BLAKE2b-256 checksum
How to use checksums
2ceb52d1af3599695c685825701e6d80db4ba55c3384e016ded77929f2b40c6b
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp39-cp39-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp39-cp39-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.9 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
7a605148c378c1ce4838503da22257bc215a65005ec599b23dc6783f205c78d9
BLAKE2b-256 checksum
How to use checksums
58c7acc512f6e2064fc56f80f6523f108d89ca9ad2ee6d1c770feecb808e2a25
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp39-cp39-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp39-cp39-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.9 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
fb28c25ea4899094eabe9f2d0148fc6443ee5ce0ba3940bed86fed90c546f80d
BLAKE2b-256 checksum
How to use checksums
7a538ba0db12f5300a641eeefe069198d358e3f91214cf27a914e7f308561e6c
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp38-cp38-win_amd64.whl

Download URL kornia_rs-0.1.15-cp38-cp38-win_amd64.whl
Size 4.3 MB
Tags CPython 3.8 Windows x86-64
SHA-256 checksum
How to use checksums
b479858fc4c1c51562336b191670083a182dec4293a9c121203d63dfa2c92911
BLAKE2b-256 checksum
How to use checksums
3b3c440be4e3ba8deb2829a6b2850dcbe9583a44bd78a149ecb4bf9ba68eedd1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl

Download URL kornia_rs-0.1.15-cp38-cp38-manylinux_2_17_x86_64.manylinux2014_x86_64.whl
Size 5.3 MB
Tags CPython 3.8 Linux glibc 2.17+ x86-64
SHA-256 checksum
How to use checksums
cc7a387bc4f234d2aca377af1214f78f68ff42c7346f4afc064722f2353c77bc
BLAKE2b-256 checksum
How to use checksums
3084aa334b5399d01b63a3bc09693986b315cfc5567b5f83dfb4ee571039acb1
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl

Download URL kornia_rs-0.1.15-cp38-cp38-manylinux_2_17_aarch64.manylinux2014_aarch64.whl
Size 4.7 MB
Tags CPython 3.8 Linux glibc 2.17+ ARM64
SHA-256 checksum
How to use checksums
6c5302afb0bcf33337c46850737be659d1f844a37835f7ddc42f81af65a50cbd
BLAKE2b-256 checksum
How to use checksums
1ab621d1ae3eecac41827df27aa99c02f771afddec44af5d41894f3830159c9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp38-cp38-macosx_11_0_arm64.whl

Download URL kornia_rs-0.1.15-cp38-cp38-macosx_11_0_arm64.whl
Size 4.0 MB
Tags CPython 3.8 macOS 11.0+ ARM64
SHA-256 checksum
How to use checksums
02826d7c8042914c5a9e62317a493c4ce5469c1935e5c73d1940d15a54729e40
BLAKE2b-256 checksum
How to use checksums
99ad9e719c925c139ff73d3624c1a7e3cd9d6700b6519c43a239cae93d511ceb
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0

Release files / kornia_rs-0.1.15-cp38-cp38-macosx_10_12_x86_64.whl

Download URL kornia_rs-0.1.15-cp38-cp38-macosx_10_12_x86_64.whl
Size 4.5 MB
Tags CPython 3.8 macOS 10.12+ x86-64
SHA-256 checksum
How to use checksums
de8c9fbe6fe9731d814ce90f3e6c7ebeb2bf1bc8d0618278a873a227cf9408a5
BLAKE2b-256 checksum
How to use checksums
f2c6a06f4a01dd55b874cbf88399ab1258c4b2d426f36688c5cd977a6ffd2b9e
Upload date
Uploaded using Trusted Publishing?
What is trusted publishing?
No
Uploaded via maturin/1.15.0
Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page