https://github.com/johnnv1/cv-in-rust
https://github.com/johnnv1/cv-in-rust
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/johnnv1/cv-in-rust
- Owner: johnnv1
- Created: 2022-10-04T15:21:44.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-04T00:36:51.000Z (about 2 years ago)
- Last Synced: 2025-02-08T14:30:14.593Z (4 months ago)
- Language: Rust
- Size: 16.6 KB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Computer Vision in Rust
This repository has only a few rust scripts, **for rust learning purposes**.
Therefore, you will probably find implementations done in a bad way.## Env
Creating the env to dev.
```bash
$ pip install rustenv # similar to `virtualenv`$ rustenv renv # Create the rustenv
$ . renv/bin/activate # Activate the env
```Using cargo:
```bash
$ cargo init --bin # Create a new Rust project$ cargo add image # add a dependency
$ cargo run # will run the current package (src/main.rs)
# Working with isolated scripts
# First add into `Cargo.toml` a bin section with path and name for each file
$ cargo build # Build everthing$ cargo run --bin # Run the single script
```