Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
7answers
573 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 ...
8
votes
4answers
308 views

Sorting a list of RGB triplets into a spectrum

I have a list of RGB triplets, and I'd like to plot them in such a way that they form something like a spectrum. I've converted them to HSV, which people seem to recommend. from PIL import Image, ...
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
884 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
176 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 ...
3
votes
2answers
107 views

Algorithm to sort hues into shortest span, e.g. `350,354,2,10,15`? [0-360 deg]

In color schemes, I would like to sort the hues, but would like to avoid 'big gaps', i.e. prefer 350,354,2,10,15 over 2,10,15,350,354 (when expressed as 0-360 degree values). What's the best approach ...
2
votes
1answer
62 views

Color profiles conversion

I have a project on color profile conversion in C++, where the idea is to use CIELAB as transition between RGB and all others (CMY; CMYK; HSV; HSL;...).But I have one big big problem. I have searched ...
2
votes
3answers
110 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
850 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
0answers
152 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
1answer
272 views

Read HSV value of pixel in opencv

how would you go about reading the pixel value in HSV format rather than RGB? The code below reads the pixel value of the circles' centers in RGB format. Is there much difference when it comes to ...
1
vote
0answers
98 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
279 views

Skin detection in the CIELab and HSV color space

I've seen CIELab and HSV suggested a few times here on stackoverflow, but I haven't been able to find any values corresponding to skin. What are good values to look for when doing skin detection in ...
1
vote
0answers
105 views

Quadrilateral Detection & Pose Estimation

How can i estimate the pose of a quadrilateral using OpenCV. I only need to detect a Rectangle on the frame..not all the quadrilaterals on the screen
1
vote
2answers
964 views

how to set hue value of some pixel with opencv

I need to change the hue of some pixels of my image, but i don't know how to set them! I converted the image in HSV with CV_BGR2HSV and now i'm cycling with a for by rows and cols... how can I ...
1
vote
2answers
281 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
703 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: ...
0
votes
3answers
90 views

Exact Skin color HSV range

I have seen all questions on SO for range of HSV color space for skin But I can only figure out this Code - CvScalar hsv_min = cvScalar(0, 30, 60, 0); CvScalar hsv_max = cvScalar(20, 150, 255, ...
0
votes
2answers
122 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
3answers
107 views

Why Pixel Bender filter behaves differently in Toolkit than in Flex/Air application?

Ok, so I've tried this simpler filter with same Air code as below: <languageVersion : 1.0;> kernel NewFilter < namespace : "Your Namespace"; vendor : "Your Vendor"; version : 1; ...
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
123 views

Reading HSV value of pixel in detected circles in opencv

I have an image with detected circles and am trying to read value of these circles in HSV format. I can get the BGR values but not HSv. is there any way to convert bgr to hsv after getting bgr value ...
0
votes
1answer
156 views

Video Processing OpenCV?

I am trying to pass in a HSV frame from a video to the function, but the function does not seem to do anything to it. What am I doing wrong? The function is supposed to go through each pixel, and ...
0
votes
1answer
86 views

How to colorize a drawable?

How can I colorize Android drawable by setting hue, saturation delta and brightness delta?
0
votes
1answer
37 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
447 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
605 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
1answer
106 views

MySQL Spatial search for HSV (color) values?

Is it possible to use MySQL's spacial search to find points inside of a 3D polygon? Or better still, is it possible to use MySQL to find the values on the surface of an HSV cylinder?
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 ...