https://github.com/c1m50c/greyscale-image
Learning application to greyscale an image.
https://github.com/c1m50c/greyscale-image
cli cv2 grayscale grayscale-image greyscale greyscale-image images mit-license opencv opencv-python python python3 rust
Last synced: 3 months ago
JSON representation
Learning application to greyscale an image.
- Host: GitHub
- URL: https://github.com/c1m50c/greyscale-image
- Owner: c1m50c
- License: mit
- Created: 2021-12-16T22:43:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-03-10T05:50:10.000Z (about 3 years ago)
- Last Synced: 2025-01-19T16:45:45.096Z (4 months ago)
- Topics: cli, cv2, grayscale, grayscale-image, greyscale, greyscale-image, images, mit-license, opencv, opencv-python, python, python3, rust
- Language: Rust
- Homepage:
- Size: 515 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# **greyscale-image**


Learning application to greyscale an image.

## **Running**
Python 🐍
Currently supports.jpg
files only.### **Installing Requirements**
```bash
$ cd greyscale-image
$ pip install -r ./requirements.txt
```### **Running**
```bash
$ cd greyscale-image
$ python3 src/python/main.py [INPUT_FILE_PATH]
# Output will be `output.jpg`
```Rust 🦀
### **Building & Running**
```bash
$ cd greyscale-image
$ cargo build --release
$ ./target/release/greyscale-image [INPUT_FILE_PATH] [OUTPUT_FILE_PATH]
```