Skip to main content

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.


Project details


Release history Release notifications | RSS feed

This version

0.1

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

huechanger-0.1-py2.py3-none-any.whl (4.1 kB view hashes)

Uploaded Python 2 Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page