https://github.com/novara754/filter-magic
A simple little CLI tool to apply a few different filters to images.
https://github.com/novara754/filter-magic
cli cpp filters image-processing images opencv2
Last synced: about 2 months ago
JSON representation
A simple little CLI tool to apply a few different filters to images.
- Host: GitHub
- URL: https://github.com/novara754/filter-magic
- Owner: novara754
- License: mit
- Created: 2018-08-16T16:30:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T12:55:09.000Z (over 5 years ago)
- Last Synced: 2025-06-04T02:24:50.343Z (about 1 year ago)
- Topics: cli, cpp, filters, image-processing, images, opencv2
- Language: C++
- Size: 10.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Filter Magic
Filter Magic is a small CLI tool to apply different filters to images.
It is written in C++ using the OpenCV library.
## Usage
The general usage is `filter-magic [options]` where `[options]` is a list of filters to apply to the image.
Example:
```bash
# Apply a sepia filter and scale the image by two in width and height.
$ filter-magic input.png sepia scale 2,2
```
As of now, the supported filters are:
- `grey`/`greyscale`
- `sepia`
- `rotate `
- `scale ,`
You can also add `output ` anywhere int the options to change the output file.