Skip to content

c1m50c/greyscale-image

Repository files navigation

greyscale-image

Rust Build Status GitHub License Lines of Code

Learning application to greyscale an image.

Cover Image

Running

Python 🐍 Currently supports .jpg files only.

Installing Requirements

$ cd greyscale-image
$ pip install -r ./requirements.txt

Running

$ cd greyscale-image
$ python3 src/python/main.py [INPUT_FILE_PATH]
# Output will be `output.jpg`
Rust 🦀

Building & Running

$ cd greyscale-image
$ cargo build --release
$ ./target/release/greyscale-image [INPUT_FILE_PATH] [OUTPUT_FILE_PATH]