Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 30 days 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2020-10-01T12:55:09.000Z (about 4 years ago)
- Last Synced: 2024-10-14T22:14:27.453Z (2 months 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.