Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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.