Skip to content
ย 
ย 

Latest commit

ย 

History

3,394 Commits

Folders and files

NameName
Last commit message
Last commit date
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation


English | ็ฎ€ไฝ“ไธญๆ–‡

Docs โ€ข Try it Now โ€ข Tutorials โ€ข Examples โ€ข Blog โ€ข Community

PyPI version Downloads star Discord Twitter License

Kornia is a differentiable computer vision library that provides a rich set of differentiable image processing and geometric vision algorithms. Built on top of PyTorch, Kornia integrates seamlessly into existing AI workflows, allowing you to leverage powerful batch transformations, auto-differentiation and GPU acceleration. Whether you're working on image transformations, augmentations, or AI-driven image processing, Kornia equips you with the tools you need to bring your ideas to life.

๐Ÿ“ข Direction: Kornia is becoming the reference implementation and executable specification for differentiable computer vision and geometry in the PyTorch ecosystem โ€” explicit conventions, conformance tests, and honest benchmarks over API growth. Read the Roadmap.

Key Components

  1. Differentiable Image Processing
    Kornia provides a comprehensive suite of image processing operators, all differentiable and ready to integrate into deep learning pipelines.
    • Filters: Gaussian, Sobel, Median, Box Blur, etc.
    • Transformations: Affine, Homography, Perspective, etc.
    • Enhancements: Histogram Equalization, CLAHE, Gamma Correction, etc.
    • Edge Detection: Canny, Laplacian, Sobel, etc.
    • ... check our docs for more.
  2. Advanced Augmentations
    Perform powerful data augmentation with Korniaโ€™s built-in functions, ideal for training AI models with complex augmentation pipelines.
    • Augmentation Pipeline: AugmentationSequential, PatchSequential, VideoSequential, etc.
    • Automatic Augmentation: AutoAugment, RandAugment, TrivialAugment.
  3. AI Models
    Leverage pre-trained AI models optimized for a variety of vision tasks, all within the Kornia ecosystem.
    • Face Detection: YuNet
    • Feature Matching: LoFTR, LightGlue
    • Feature Descriptor: DISK, DeDoDe, SOLD2
    • Segmentation: SAM
    • Classification: MobileViT, VisionTransformer.
See here for some of the methods that we support! (>500 ops in total !)
Category Methods/Models
Image Processing - Color conversions (RGB, Grayscale, HSV, etc.)
- Geometric transformations (Affine, Homography, Resizing, etc.)
- Filtering (Gaussian blur, Median blur, etc.)
- Edge detection (Sobel, Canny, etc.)
- Morphological operations (Erosion, Dilation, etc.)
Augmentation - Random cropping, Erasing
- Random geometric transformations (Affine, flipping, Fish Eye, Perspecive, Thin plate spline, Elastic)
- Random noises (Gaussian, Median, Motion, Box, Rain, Snow, Salt and Pepper)
- Random color jittering (Contrast, Brightness, CLAHE, Equalize, Gamma, Hue, Invert, JPEG, Plasma, Posterize, Saturation, Sharpness, Solarize)
- Random MixUp, CutMix, Mosaic, Transplantation, etc.
Feature Detection - Detector (Harris, GFTT, Hessian, DoG, KeyNet, DISK and DeDoDe)
- Descriptor (SIFT, HardNet, TFeat, HyNet, SOSNet, and LAFDescriptor)
- Matching (nearest neighbor, mutual nearest neighbor, geometrically aware matching, AdaLAM LightGlue, and LoFTR)
Geometry - Camera models and calibration
- Stereo vision (epipolar geometry, disparity, etc.)
- Homography estimation
- Depth estimation from disparity
- 3D transformations
Deep Learning Layers - Custom convolution layers
- Recurrent layers for vision tasks
- Loss functions (e.g., SSIM, PSNR, etc.)
- Vision-specific optimizers
Photometric Functions - Photometric loss functions
- Photometric augmentations
Filtering - Bilateral filtering
- DexiNed
- Dissolving
- Guided Blur
- Laplacian
- Gaussian
- Non-local means
- Sobel
- Unsharp masking
Color - Color space conversions
- Brightness/contrast adjustment
- Gamma correction
Stereo Vision - Disparity estimation
- Depth estimation
- Rectification
Image Registration - Affine and homography-based registration
- Image alignment using feature matching
Pose Estimation - Essential and Fundamental matrix estimation
- PnP problem solvers
- Pose refinement
Optical Flow - Farneback optical flow
- Dense optical flow
- Sparse optical flow
3D Vision - Depth estimation
- Point cloud operations
Image Denoising - Gaussian noise removal
- Poisson noise removal
Edge Detection - Sobel operator
- Canny edge detection
Transformations - Rotation
- Translation
- Scaling
- Shearing
Loss Functions - SSIM (Structural Similarity Index Measure)
- PSNR (Peak Signal-to-Noise Ratio)
- Cauchy
- Charbonnier
- Depth Smooth
- Dice
- Hausdorff
- Tversky
- Welsch
Morphological Operations - Dilation
- Erosion
- Opening
- Closing

Half-Precision Support

Module float16 bfloat16 Notes
kornia.color โš ๏ธ โš ๏ธ Most conversions work for both; FFT-based ops may fail
kornia.filters โš ๏ธ โš ๏ธ Basic filters work; FFT-based ops may fail on CUDA
kornia.enhance โš ๏ธ โš ๏ธ Histogram eq / gamma / ZCA work (linalg ops use cast helpers)
kornia.morphology โœ… โœ… Conv/pool ops; top_hat / bottom_hat / gradient also subtract two dilation/erosion results, so bfloat16 loses ~0.4% relative accuracy โ€” within kornia's own bfloat16 tolerance, though 6 tests override it with a tighter one (#4081)
kornia.augmentation โš ๏ธ โš ๏ธ Most ops work; precision-sensitive transforms may be inaccurate
kornia.geometry.transform โš ๏ธ โš ๏ธ Affine/warp/resize work via cast helpers; thin-plate spline may fail
kornia.geometry.camera โš ๏ธ โš ๏ธ Pinhole model and most camera ops work; StereoCamera accepts both
kornia.geometry.calibration โŒ โŒ Explicitly accepts float32/float64 only (PnP solver)
kornia.geometry.epipolar โš ๏ธ โš ๏ธ SVD/inverse use cast helpers; both dtypes work
kornia.geometry.homography โš ๏ธ โš ๏ธ Uses _torch_svd_cast โ€” both dtypes work via casting
kornia.geometry.liegroup โš ๏ธ โš ๏ธ Most ops work via cast helpers; some linalg paths may fail
kornia.geometry.solvers โš ๏ธ โš ๏ธ Uses _torch_solve_cast โ€” both dtypes work via casting
kornia.geometry.subpix โš ๏ธ โš ๏ธ Soft-argmax works; precision-sensitive ops may be inaccurate
kornia.losses โš ๏ธ โš ๏ธ Photometric losses work; linalg-based losses may not
kornia.feature โš ๏ธ โš ๏ธ Detectors/descriptors work; matching uses manual cdist fallback
kornia.metrics โš ๏ธ โš ๏ธ Pixel-level metrics work; linalg-based metrics may not
kornia.models โš ๏ธ โš ๏ธ Conv-based models work; attention-based models may have dtype mismatches

โœ… Supported ย  โš ๏ธ Partial ย  โŒ Not supported

Test results:

Run Passed Failed Skipped Pass% Measured
CPU float32 (baseline) 8499 0 3535 100.0% 4ab79c78, 2026-08-29
CPU float16 7751 689 3595 91.8% 4ab79c78, 2026-08-29
CPU bfloat16 7794 695 3545 91.8% 4ab79c78, 2026-08-29
CUDA float32 (baseline) 7634 3 3280 99.9% 6131e98, 2026-03-21
CUDA float16 (KORNIA_TEST_IN_SUBPROCESS=1) 6727 643 3556 91.3% 6131e98, 2026-03-21
CUDA bfloat16 (KORNIA_TEST_IN_SUBPROCESS=1) 6695 713 3518 90.4% 6131e98, 2026-03-21

Reproduce the two CPU half rows with pixi run test-half and the CPU float32 baseline with pixi run test-f32 (test-half pins KORNIA_TEST_DTYPE to float16,bfloat16, so it cannot produce the baseline). The half-precision suite is not run in CI (see #4070), so these numbers are refreshed by hand.

See the full precision guide for details.

Sponsorship

Kornia is an open-source project that is developed and maintained by volunteers. Whether you're using it for research or commercial purposes, consider sponsoring or collaborating with us. Your support will help ensure Kornia's growth and ongoing innovation. Reach out to us today and be a part of shaping the future of this exciting initiative!

Installation

PyPI python pytorch

From pip

pip install kornia
Other installation options

From source with editable mode

pip install -e .

For development with Pixi (Recommended)

For development, Kornia uses pixi for fast Python package management and environment management. The project includes a pixi.toml configuration file for reproducible dependency management.

# Install pixi (if not already installed)
curl -fsSL https://pixi.sh/install.sh | bash

# Create the Pixi environment and install development dependencies
pixi install
pixi run install

# Run tests
pixi run test

# For CUDA development
pixi run -e cuda install
pixi run -e cuda test-cuda

These commands set up a complete development environment with all dependencies. For more details on dependency management and available tasks, see CONTRIBUTING.md.

From Github url (latest version)

pip install git+https://github.com/kornia/kornia

Quick Start

Kornia is not just another computer vision library โ€” it's your gateway to effortless Computer Vision and AI.

Get started with Kornia image transformation and augmentation!
import numpy as np
import kornia_rs as kr

from kornia.augmentation import AugmentationSequential, RandomAffine, RandomBrightness
from kornia.filters import StableDiffusionDissolving

# Load and prepare your image
img: np.ndarray = kr.read_image_any("img.jpeg")
img = kr.resize(img, (256, 256), interpolation="bilinear")

# alternatively, load image with PIL
# img = Image.open("img.jpeg").resize((256, 256))
# img = np.array(img)

img = np.stack([img] * 2)  # batch images

# Define an augmentation pipeline
augmentation_pipeline = AugmentationSequential(RandomAffine((-45.0, 45.0), p=1.0), RandomBrightness((0.0, 1.0), p=1.0))

# Leveraging StableDiffusion models
dslv_op = StableDiffusionDissolving()

img = augmentation_pipeline(img)
dslv_op(img, step_number=500)

dslv_op.save("Kornia-enhanced.jpg")
Find out Kornia ONNX models with ONNXSequential!
import numpy as np
from kornia.onnx import ONNXSequential

# Chain ONNX models from HuggingFace repo and your own local model together
onnx_seq = ONNXSequential(
    "hf://operators/kornia.geometry.transform.flips.Hflip",
    "hf://models/kornia.models.detection.rtdetr_r18vd_640x640",  # Or you may use "YOUR_OWN_MODEL.onnx"
)
# Prepare some input data
input_data = np.random.randn(1, 3, 384, 512).astype(np.float32)
# Perform inference
outputs = onnx_seq(input_data)
# Print the model outputs
print(outputs)

# Export a new ONNX model that chains up all three models together!
onnx_seq.export("chained_model.onnx")

Multi-framework support

You can now use Kornia with TensorFlow, JAX, and NumPy. See Multi-Framework Support for more details.

import kornia

tf_kornia = kornia.to_tensorflow()

Powered by

Call For Contributors

If kornia is useful to you and you would like to help, contributions of many kinds are welcome: code, bug reports, benchmarks, documentation, questions, answers, and examples. The maintainers have limited time, so we cannot promise that every proposal or pull request will be reviewed or merged.

Strengthen the Core (Priority)

Kornia's differentiated value is its geometry core: warping and sampling, homographies, cameras, epipolar geometry, rotations and Lie groups, and geometry-consistent augmentation. The highest-impact contributions make that core more trustworthy โ€” see the Roadmap for the full picture. Great entry points:

  • Benchmark results from your hardware: run the benchmark suite with --contribute and send the JSON โ€” CUDA numbers from diverse GPUs are especially useful.
  • Convention pinning tests and conformance vectors for core geometry operations.
  • Corrective error messages: upgrade bare shape assertions into errors that state what was wrong, what was expected, and which convention applies.
  • Classical vision in the core domain: camera intrinsic calibration, fiducial markers (ArUco/ChArUco), classical tracking, dense stereo, and Hough transforms. An early design discussion can be useful for work of this size.

See the Roadmap's contributor areas for more project context.

AI Models

The model zoo is currently frozen for expansion while maintainer bandwidth concentrates on the core. Shipped models (LoFTR, LightGlue, DISK, DeDoDe, SAM, and friends) stay available and maintained, and model work approved before the freeze (Efficient LoFTR, SANDesc) will be completed under its existing scope. New integrations โ€” including VLM/VLA models โ€” require a named maintainer sponsor who accepts ongoing ownership of the integration; a contributor implementation alone cannot reopen the surface. See the Roadmap for the reasoning and the reopen condition.

Documentation And Tutorial Optimization

Kornia's foundation lies in its extensive collection of classic computer vision operators, providing robust tools for image processing, feature extraction, and geometric transformations. We continuously seek for contributors to help us improve our documentation and present nice tutorials to our users.

Cite

If you are using kornia in your research-related documents, it is recommended that you cite the paper. See more in CITATION.

@inproceedings{eriba2019kornia,
  author    = {E. Riba, D. Mishkin, D. Ponsa, E. Rublee and G. Bradski},
  title     = {Kornia: an Open Source Differentiable Computer Vision Library for PyTorch},
  booktitle = {Winter Conference on Applications of Computer Vision},
  year      = {2020},
  url       = {https://arxiv.org/pdf/1910.02190.pdf}
}

Contributing

See CONTRIBUTING.md for our social contract, development setup, and technical guidelines. Participation is subject to the Code of Conduct.

Community

  • Discord: talk with people who use and develop kornia. Join the server
  • GitHub Issues: report bugs and propose concrete changes. Open an issue
  • GitHub Discussions: ask questions and discuss implementations, research, and ideas. Join a discussion

Made with contrib.rocks.

License

Kornia is released under the Apache 2.0 license. See the LICENSE file for more information.

About

๐Ÿ Geometric Computer Vision Library for Spatial AI

Resources

Code of conduct

Contributing

Stars

1 star

Watchers

0 watching

Forks

Releases

Packages

Contributors

Languages