Change color of images
Project description
### Hue Changer Package [![Build Status](https://travis-ci.org/guemues/hue-changer.svg?branch=master)](https://travis-ci.org/guemues/hue-changer)
You have a colorful image and you want to make it red. This package is for you. There is many more method to turn images to grayscale but there is no other package to turn images to other colors. With this package you can turn images a specific HUE ranges.
You can easily install the package via pip. This package only tested in python 3.6.
```
pip intall huechanger
```
**change_in_range** method is taking 3 channel numpy array as RGB image and return an RGB image with maximum hue and minumum hue
```python
url = "https://snag.gy/uFPG2T.jpg"
filename = url.split("/")[-1]
r = requests.get(url, timeout=1)
if r.status_code == 200:
with open(filename, 'wb') as f:
f.write(r.content)
t = cv2.imread(filename)
MIN_HUE = 10
MAX_HUE = 30
t = cv2.cvtColor(t, COLOR_BGR2RGB)
new_image = change_in_range(t, MIN_HUE, MAX_HUE)
```
<img src="https://snag.gy/V25svq.jpg" width="200">
will be turn in to
<img src="https://snag.gy/kduXwj.jpg" width="200">
Enjoy with colors
This python package is implemented for an EPFL cognitive science semester course project.
You have a colorful image and you want to make it red. This package is for you. There is many more method to turn images to grayscale but there is no other package to turn images to other colors. With this package you can turn images a specific HUE ranges.
You can easily install the package via pip. This package only tested in python 3.6.
```
pip intall huechanger
```
**change_in_range** method is taking 3 channel numpy array as RGB image and return an RGB image with maximum hue and minumum hue
```python
url = "https://snag.gy/uFPG2T.jpg"
filename = url.split("/")[-1]
r = requests.get(url, timeout=1)
if r.status_code == 200:
with open(filename, 'wb') as f:
f.write(r.content)
t = cv2.imread(filename)
MIN_HUE = 10
MAX_HUE = 30
t = cv2.cvtColor(t, COLOR_BGR2RGB)
new_image = change_in_range(t, MIN_HUE, MAX_HUE)
```
<img src="https://snag.gy/V25svq.jpg" width="200">
will be turn in to
<img src="https://snag.gy/kduXwj.jpg" width="200">
Enjoy with colors
This python package is implemented for an EPFL cognitive science semester course project.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file huechanger-0.1-py2.py3-none-any.whl
.
File metadata
- Download URL: huechanger-0.1-py2.py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | ac6925448789f89d4e323b03f88ae02082f1872de0bea52f27856c14a06695ed |
|
MD5 | 1ec084251f2d5a40f92fadb2f8f61bcc |
|
BLAKE2b-256 | c67f082da0b56defeb3980ec378f74047183636982af3d3c3f9eb92eb33184b1 |