Skip to content

Instantly share code, notes, and snippets.

View beotiger's full-sized avatar
💭
Happiness

Andrey Tzar beotiger

💭
Happiness
View GitHub Profile
@mathebox
mathebox / color_conversion.py
Created April 12, 2015 16:47
Python methods to convert colors between RGB, HSV and HSL
import math
def rgb_to_hsv(r, g, b):
r = float(r)
g = float(g)
b = float(b)
high = max(r, g, b)
low = min(r, g, b)
h, s, v = high, high, high