Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Cs Video Courses | 53,706 | 10 days ago | 14 | |||||||
List of Computer Science courses with video lectures. | ||||||||||
D2l Zh | 41,093 | 1 | 13 hours ago | 45 | March 25, 2022 | 24 | apache-2.0 | Python | ||
《动手学深度学习》:面向中文读者、能运行、可讨论。中英文版被60多个国家的400多所大学用于教学。 | ||||||||||
Openpose | 26,476 | 7 days ago | 228 | other | C++ | |||||
OpenPose: Real-time multi-person keypoint detection library for body, face, hands, and foot estimation | ||||||||||
Applied Ml | 23,904 | 7 days ago | 5 | mit | ||||||
📚 Papers & tech blogs by companies sharing their work on data science & machine learning in production. | ||||||||||
Mediapipe | 21,121 | 94 | 13 hours ago | 24 | June 28, 2022 | 510 | apache-2.0 | C++ | ||
Cross-platform, customizable ML solutions for live and streaming media. | ||||||||||
Learnopencv | 18,192 | 4 days ago | 249 | Jupyter Notebook | ||||||
Learn OpenCV : C++ and Python Examples | ||||||||||
D2l En | 17,167 | a day ago | 87 | other | Python | |||||
Interactive deep learning book with multi-framework code, math, and discussions. Adopted at 400 universities from 60 countries including Stanford, MIT, Harvard, and Cambridge. | ||||||||||
Datasets | 15,649 | 9 | 208 | 14 hours ago | 52 | June 15, 2022 | 526 | apache-2.0 | Python | |
🤗 The largest hub of ready-to-use datasets for ML models with fast, easy-to-use and efficient data manipulation tools | ||||||||||
Awesome Pytorch List | 13,786 | a month ago | 2 | |||||||
A comprehensive list of pytorch related content on github,such as different models,implementations,helper libraries,tutorials etc. | ||||||||||
Vision | 13,612 | 2,306 | 1,413 | 11 hours ago | 32 | June 28, 2022 | 895 | bsd-3-clause | Python | |
Datasets, Transforms and Models specific to Computer Vision |
Kornia is a differentiable computer vision library for PyTorch.
It consists of a set of routines and differentiable modules to solve generic computer vision problems. At its core, the package uses PyTorch as its main backend both for efficiency and to take advantage of the reverse-mode auto-differentiation to define and compute the gradient of complex functions.
Inspired by existing packages, this library is composed by a subset of packages containing operators that can be inserted within neural networks to train models to perform image transformations, epipolar geometry, depth estimation, and low-level image processing such as filtering and edge detection that operate directly on tensors.
At a granular level, Kornia is a library that consists of the following components:
Component | Description |
---|---|
kornia | a Differentiable Computer Vision library, with strong GPU support |
kornia.augmentation | a module to perform data augmentation in the GPU |
kornia.color | a set of routines to perform color space conversions |
kornia.contrib | a compilation of user contrib and experimental operators |
kornia.enhance | a module to perform normalization and intensity transformation |
kornia.feature | a module to perform feature detection |
kornia.filters | a module to perform image filtering and edge detection |
kornia.geometry | a geometric computer vision library to perform image transformations, 3D linear algebra and conversions using different camera models |
kornia.losses | a stack of loss functions to solve different vision tasks |
kornia.morphology | a module to perform morphological operations |
kornia.utils | image to tensor utilities and metrics for vision problems |
pip install kornia
pip install kornia[x] # to get the training API !
python setup.py install
pip install -e .
pip install git+https://github.com/kornia/kornia
Run our Jupyter notebooks tutorials to learn to use the library.
🚩 Updates
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}
}
We appreciate all contributions. If you are planning to contribute back bug-fixes, please do so without any further discussion. If you plan to contribute new features, utility functions or extensions, please first open an issue and discuss the feature with us. Please, consider reading the CONTRIBUTING notes. The participation in this open source project is subject to Code of Conduct.
Made with contrib.rocks.