Tagged Questions
48
votes
7answers
1k views
How to compare two colors
I want to design a program that can help me assess between 5 pre-defined colors which one is more similar to a variable color, and with what percentage. The thing is that I don't know how to do that ...
19
votes
5answers
21k views
How to change RGB color to HSV?
How to change RGB color to HSV? In C# language.
I search for very fast method without any external library.
15
votes
4answers
379 views
why does greyscale work the way it does?
My original question
I read that to convert a RGB pixel into greyscale RGB, one should use
r_new = g_new = b_new = r_old * 0.3 + g_old * 0.59 + b_old * 0.11
I also read, and understand, that g has ...
6
votes
5answers
2k views
PHP HSV to RGB formula comprehension
I can convert RGB values to HSV with the following code...
$r = $r/255;
$g = $g/255;
$b = $b/255;
$h = 0;
$s = 0;
$v = 0;
$min = min(min($r, $g),$b);
$max = max(max($r, $g),$b);
$r = ...
4
votes
1answer
909 views
Stable random color algorithm
Here we have an interesting real-world algorithm requirement involving colors.
N Pretty Colors: In order to draw a beautiful chart (i.e: pie chart) we need to pick a random set of N colors that are ...
4
votes
1answer
1k views
How to interpolate hue values in HSV colour space?
I'm trying to interpolate between two colours in HSV colour space to produce a smooth colour gradient.
I'm using a linear interpolation, eg:
h = (1 - p) * h1 + p * h2
s = (1 - p) * s1 + p * s2
v = ...
3
votes
2answers
199 views
adding/mixing colors in HSV Space
I've been trying to get a visualisation going for a few days.
I'm generating a diffraction image and want to color it depending on the wavelength of light.
The easiest way to get the right color was ...
2
votes
3answers
132 views
Percentage to Hexcolor in PHP
I'd like to make a percentage into a hexidecimal color. Kind of how HSV color degrees work...
I am using PHP.
IE:
0% : RED (#FF0000)
8% : ORANGE (#FF7F00)
17% : YELLOW (#FFFF00)
...
2
votes
1answer
2k views
RGB to HSV in PHP
In PHP, what is the most straightforward way to convert a RGB triplet to HSV values?
1
vote
2answers
251 views
Converting from HSV (HSB in Java) to RGB without using java.awt.Color (disallowed on Google App Engine)
I figured I should post this question, even if I have already found a solution, as a Java implementation was not readily available when I searched for it.
Using HSV instead of RGB allows the ...
1
vote
0answers
182 views
Coloring a grayscale sprite with HSV
I am using AndEngine for a live wallpaper project, though I imagine my problem should be universal to Android or even Java entirely. Until recently I was using SVG's for my images due to the scaling ...
1
vote
0answers
120 views
Android/Java: Determining if text color will blend in with the background?
I'm introducing "tagging" functionality in my application, and one of the ways I allow tags to be displayed is to set the text to the color the user has selected for each. My application has three ...
1
vote
2answers
309 views
How to add Hue to a given color programmatically?
I tried to implement a my color editor in Java. It should be a simple software. The user will input color in hexadecimal RGBs, for example: 0xFF00FF. I know how to calculate Hue, Chroma, Saturation ...
1
vote
3answers
720 views
jQuery - color cycle animation with hsv colorspace?
I am working on a project, which I need a special body-background for. The background-color should cycle through the color spectrum like a mood light. So I found this:
...
1
vote
3answers
2k views
Converting an rgb image to hsv
I'm trying to convert an rgb image to the equivalent hsv one in C#. I found several algorithms to do the conversion but couldn't find how to save these values of an image after calculating it.
For ...
0
votes
1answer
114 views
HSV / RGB color space conversion
I found this code in this forum but Im having doubts with the code.
in this code snippet "int hi = Convert.ToInt32(Math.Floor(hue / 60)) % 6;" why the complete answer is modulus by 6? (%6)
why is ...
0
votes
1answer
102 views
changing white and black color using HSV color space
im converting the the RGB color image into HSV color space and Im change hue using a trackbar and converting back it to RGB values. this methord works fine and changes color excepts for white and ...
0
votes
1answer
92 views
How to colorize a drawable?
How can I colorize Android drawable by setting hue, saturation delta and brightness delta?
0
votes
1answer
40 views
Problem determining Color Saturation
I am writing a tool that will attempt to determine which of the known colors is "closest" to some user-chosen color (from the full RGB gamut). I am noticing that the values returned by Microsoft's ...
0
votes
1answer
499 views
Fade through more more natural rainbow spectrum in HSV/HSB
I'm trying to control some RGB LEDs and fade from red to violet. I'm using an HSV to RGB conversion so that I can just sweep from hue 0 to hue 300 (beyond that it moves back towards red). The problem ...
0
votes
2answers
729 views
Colour Name to RGB/Hex/HSL/HSV etc
I have come across this great function/command. Colour to RGB, you can do this:
col2rgb("peachpuff")
//returns hex
It will return one hex value. I want to extend this using Perl, Python or PHP but ...
0
votes
3answers
619 views
PHP Work out colour saturation
lets say i have the following RGB values:
R:129
G:98
B:87
Photoshop says the saturation of that colour is 33%
How would i work out that percentage using PHP and the RGB values?