https://github.com/dahlitzflorian/python-color-changer
Change a pictures colors using cli
https://github.com/dahlitzflorian/python-color-changer
cli color-converter python python-3 python-cli python-color-changer python3
Last synced: 3 months ago
JSON representation
Change a pictures colors using cli
- Host: GitHub
- URL: https://github.com/dahlitzflorian/python-color-changer
- Owner: DahlitzFlorian
- License: mit
- Created: 2018-03-24T21:23:46.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-21T14:04:36.000Z (over 6 years ago)
- Last Synced: 2025-02-01T12:04:06.396Z (3 months ago)
- Topics: cli, color-converter, python, python-3, python-cli, python-color-changer, python3
- Language: Python
- Size: 12.7 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Python Color Changer #
[](https://travis-ci.org/DahlitzFlorian/python-color-changer)## Description ##
This lightweight color-changer allows you to change the colors
of a given picture and creates a new file of it.version 1.0.5
## Installation ##
You can install it from source or using `pip````bash
$ pip install color-changer
```Make sure you have OpenCV installed and named cv2 as usual.
[Here](https://medium.com/coding-experiences/setting-up-opencv3-with-python3-on-macos-84be7909e28d)
you can find an article on how to set it up on OSX with Python3. The other dependencies are installed automatically.## Available Arguments ##
Short | Long | Values
------|------|-------
-i | --image | path to image
-c | --changer | red-green or gree-blue or blue-red
-r | --result | new image name## Examples ##
```bash
$ python -m colorchanger.colorchanger -i image.jpg
$ python -m colorchanger.colorchanger -i image.png -c red-green
```