Tagged Questions

20
votes
7answers
536 views

How to compare two colors

I want to design a program that can help me assess between 5 pre-defined colors wich one is more similar to a variable color, and with what percentage. The thing is that I don't know how to do that ...
17
votes
5answers
20k 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
362 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
882 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 ...
2
votes
1answer
848 views

polaroid filter from UIImage

I am trying to implement some image filters, like polaroid, in iphone. I searched on how to filter an existing UIImage to convert it into a polaroid style and come across this stackoverflow link. ...
2
votes
1answer
4k views

Convert RGB value to HSV

I've found a method on the Internet to convert RGB values to HSV values. Unfortunately, when the values are R=G=B, I'm getting a NaN, because of the 0/0 operation. Do you know if there is an ...
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?
2
votes
1answer
1k views

How do I convert RGB into HSV in Cocoa Touch?

I want to set the background color of a label using HSV instead of RGB. How do I implement this into code? Code: //.m file #import "IBAppDelegate.h" @implementation IBAppDelegate @synthesize ...
1
vote
2answers
191 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
2answers
280 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 ...
0
votes
2answers
121 views

Find color name when have Hue in android

I only care about 12 colors: red: RGB: 255, 0, 0 pink: RGB: 255, 192, 203 violet: RGB: 36, 10, 64 blue: RGB: 0, 0, 255 green: RGB: 0, 255, 0 yellow: RGB: 255, 255, 0 orange: RGB: 255, 104, 31 white: ...
0
votes
1answer
87 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
79 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
446 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
3answers
257 views

Check if a pixel (RGB or HSV) is contained in a color scale range, how

I need to check if a pixel (RGB) is contained in the color scale ranging from very light pink to dark purple. Using the RGB scheme can I do a check like this: IF image [x, y] [R]> threshold and ...
0
votes
0answers
298 views

Strange problem when converting RGB to HSV

I made a small RGB to HSV converter algorithm with C. It seems to work pretty well, but there is one strange problem: If I first convert i.e. a 800x600 picture into HSV map and then back to RGB map ...
0
votes
2answers
694 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
603 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?
0
votes
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 ...