All Projects → rust-cv → cv

rust-cv / cv

Licence: other
Rust CV mono-repo. Contains pure-Rust dependencies which attempt to encapsulate the capability of OpenCV, OpenMVG, and vSLAM frameworks in a cohesive set of APIs.

Programming Languages

rust
11053 projects
HTML
75241 projects

Projects that are alternatives of or similar to cv

Multipart
A backend-agnostic extension for file uploads in HTTP libraries for Rust
Stars: ✭ 155 (-63.62%)
Mutual labels:  crates
Naersk
Build rust crates in Nix. No configuration, no code generation, no IFD. Sandbox friendly.
Stars: ✭ 193 (-54.69%)
Mutual labels:  crates
serde with
This crate provides custom de/serialization helpers to use in combination with serde's `with`-annotation and with the improved `serde_as`-annotation.
Stars: ✭ 392 (-7.98%)
Mutual labels:  crates
Semantic Rs
🚀 Automatic crate publishing done right
Stars: ✭ 162 (-61.97%)
Mutual labels:  crates
Ammonia
Repair and secure untrusted HTML
Stars: ✭ 184 (-56.81%)
Mutual labels:  crates
Staticvec
Implements a fixed-capacity stack-allocated Vec alternative backed by an array, using const generics.
Stars: ✭ 236 (-44.6%)
Mutual labels:  crates
Pleco
A Rust-based re-write of the Stockfish Chess Engine
Stars: ✭ 137 (-67.84%)
Mutual labels:  crates
colorful
Make your terminal output colorful.
Stars: ✭ 43 (-89.91%)
Mutual labels:  crates
Rust Unic
UNIC: Unicode and Internationalization Crates for Rust
Stars: ✭ 189 (-55.63%)
Mutual labels:  crates
cns
Search through rust crates without leaving the terminal
Stars: ✭ 23 (-94.6%)
Mutual labels:  crates
Cargo Guppy
Track and query Cargo dependency graphs.
Stars: ✭ 174 (-59.15%)
Mutual labels:  crates
Bee
A framework for IOTA nodes, clients and applications in Rust
Stars: ✭ 176 (-58.69%)
Mutual labels:  crates
Deps.rs
Keep your dependencies up-to-date
Stars: ✭ 240 (-43.66%)
Mutual labels:  crates
Paris
Logger in Rust for pretty colors and text in the terminal. Aiming for a relatively simple API
Stars: ✭ 162 (-61.97%)
Mutual labels:  crates
wifiscanner
A crate to list WiFi hotspots in your area
Stars: ✭ 47 (-88.97%)
Mutual labels:  crates
Ktra
Your Little Cargo Registry
Stars: ✭ 147 (-65.49%)
Mutual labels:  crates
Honggfuzz Rs
Fuzz your Rust code with Google-developed Honggfuzz !
Stars: ✭ 222 (-47.89%)
Mutual labels:  crates
magnet
A JSON/BSON schema generator
Stars: ✭ 16 (-96.24%)
Mutual labels:  crates
stellar-rust-sdk
A lightweight SDK for the stellar horizon api. Written in rust.
Stars: ✭ 34 (-92.02%)
Mutual labels:  crates
Alexandrie
An alternative crate registry, implemented in Rust.
Stars: ✭ 251 (-41.08%)
Mutual labels:  crates

Rust CV

Discord Crates.io docs.rs LoC Tests Lints

Rust CV is a project to implement computer vision algorithms, abstractions, and systems in Rust. #[no_std] is supported where possible.

Documentation

Each crate has its own documentation, but the easiest way to check all of the documentation at once is to look at the docs for the cv batteries-included crate.

Check out our tutorial book here! The book source for the tutorials can be found in the tutorial directory of the repository. The example code used in the tutorial can be found in the tutorial-code directory. The resources for tutorials can be found in the site res directory.

About

This repository contains all computer vision crates for Rust CV in a mono-repo, including utilities as well as libraries. When updating libraries, all the crates in this repository should build for a PR to be accepted. Rust CV also maintains some other crates that are related to Computer Vision as well, which are located in the GitHub organization, not in this repository.

Each crate has its own associated license. Rust CV is comprised of different open source licenses, mostly MIT. See the crate directories (or their crates.io entries) for their individual licenses.

Each library was originally its own separate repository before being incorporated into the mono repo. The old repositories that are now in this repo are all archived, but still exist to find tagged versions, assocated commits, and issues. All new PRs should be made to this repository.

What is computer vision

Many people are familiar with covolutional neural networks and machine learning (ML) in computer vision, but computer vision is much more than that. Computer vision broadly encompases image processing, photogrammetry, and pattern recognition. Machine learning can be used in all of these domains (e.g. denoisers, depth map prediction, and face detection), but it is not required. Almost all of the algorithms in this repository are not based on machine learning, but that does not mean you cannot use machine learning with these tools. Please take a look at https://www.arewelearningyet.com/ for Rust ML tools. We may expand into ML more in the future for tasks at which ML outperforms statistical algorithms.

Build

Be sure to have installed rust: . The following packages will be needed on Ubuntu 20.04 (Built using Rust 1.53.0):

  • Cmake
    • sudo apt install cmake
  • build-essential
    • sudo apt-get install build-essential
  • freetype2
    • sudo apt-get install libfreetype-dev
  • libxkbcommon
    • sudo apt install libxkbcommon-dev

If you have not already done so, install Rust:

curl https://sh.rustup.rs -sSf | sh

Clone and Build

cd <directory to keep cloned repo>
git clone https://github.com/rust-cv/cv.git
cd cv
cargo build

Goals

One of the first things that Rust CV focused on was algorithms in the domain of photogrammetry. Today, Rust now has enough photogrammetry algorithms to perform SfM and visual SLAM. Weakness still exists within image processing and pattern recognition domains.

Here are some of the domains of computer vision that Rust CV intends to persue along with examples of the domain (not all algorithms below live within the Rust CV organization, and some of these may exist and are unknown to us; some things may have changed since this was last updated):

To support computer vision tooling, the following will be implemented:

Credits

TheiaSfM and all of its authors can be thanked as their abstractions are direct inspiration for this crate. In some cases, the names of some abstractions may be borrowed directly if they are consistent. You can find the TheiaSfM documentation here.

"Past, Present, and Future of Simultaneous Localization And Mapping: Towards the Robust-Perception Age" is an excellent paper that compiles information about modern SLAM algorithms and papers.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].