Skip to content

Instantly share code, notes, and snippets.

//
// RGB to HSV convert sample
//
// see also : http://ja.wikipedia.org/wiki/HSV%E8%89%B2%E7%A9%BA%E9%96%93
//
#include <stdio.h>
#include <math.h>
#define min_f(a, b, c) (fminf(a, fminf(b, c)))
@orbitcowboy
orbitcowboy / .gitignore
Last active August 29, 2015 14:10 — forked from sehe/.gitignore
*.o
a.out
test
.*.swp
*~
*.png
tags