Tagged Questions

RGB stands for Red-Green-Blue and specifies a color using three values which represent the amount of red, green, and blue in the color. It is a color notation used in most computing devices nowadays.

learn more… | top users | synonyms

34
votes
8answers
877 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 ...
31
votes
4answers
3k views

Convert light frequency to RGB?

Does anyone know of any formula for converting a light frequency to an RGB value?
30
votes
8answers
15k views

Formula to determine brightness of RGB color

I'm looking for some kind of formula or algorithm to determine the brightness of a color given the RGB values. I know it can't be as simple as adding the RGB values together and having higher sums be ...
19
votes
6answers
466 views

Algorithm for finding the color between two others - in the colorspace of painted colors

When mixing blue and yellow paint, the result is some sort of green. I have two rgb colors: blue = (0, 0, 255) and yellow = (255, 255, 0) What is the algorithm for finding the rgb color that is ...
19
votes
10answers
18k views

Background-color hex to JavaScript variable (jQuery)

I'm kind of new to JavaScript and jQuery and now I'm facing a problem: I need to post some data to PHP and one bit of the data needs to be the background color hex of div X. jQuery has the ...
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 ...
15
votes
5answers
8k views

Get hex value rather than RGB value using jQuery

Using the following jQuery will get the RGB value of an element's background color: $('#selector').css('backgroundColor'); Is there a way to get the hex value rather than the RGB?
14
votes
5answers
713 views

Paint me a Rainbow

How would you go about making a range of RGB colours evenly spaced over the spectral colour range? So as to look like a real rainbow.
13
votes
10answers
900 views

Are there any good reasons for using hex over decimal for RGB colour values in CSS?

rgb(255,255,255) notation has been available since CSS1. But #fffff seems to be vastly more popular. Obviously it's slightly more compact. I know that hex is more closely related to the underlying ...
13
votes
4answers
2k views

What is the best way to average two colors that define a linear gradient?

If I have two colors defined by their RGB values, can I average the Red, Green and Blue values and then combine to define a third color that looks like a visual average of the two? ie NewColor = ...
13
votes
7answers
4k views

Generate distinctly different RGB colors in graphs

When generating graphs and showing different sets of data it usually a good idea to difference the sets by color. So one line is red and the next is green and so on. The problem is then that when the ...
13
votes
5answers
10k views

How pick colors for a pie-chart?

I have some code that generates image of a pie chart. It's a general purpose class, so any number of slices can be given as input. Now I have problem picking good colors for the slices. Is there some ...
12
votes
7answers
11k views

Read the rgb value of a given pixel in Python, Programaticly

If i open an image with open("image.jpg"), how can i get the rgb values of a pixel, if i have the 'coordinates' ( or co-ordinates?) of the pixel? Then how can i do the reverse of this? Starting with ...
11
votes
4answers
704 views

Algorithm to check similarity of colors based on RGB values (or maybe HSV)

I'm looking for an algorithm that compares to RGB-colors and generates a value of their similarity (where similarity means "similar with respect to avarage human perception"). Any ideas?
11
votes
8answers
3k views

Conditional formatting — percentage to color conversion

What's the easiest way to convert a percentage to a color ranging from Green (100%) to Red (0%), with Yellow for 50%? I'm using plain 32bit RGB - so each component is an integer between 0 and 255. ...
10
votes
4answers
1k views

C# convert RGB value to CMYK using an ICC profile?

this question seems posted at many places over the interwebs and SO, but I could not find a satisfactory answer :( How can I convert a RGB value to a CMYK value using an ICC profile? The closest ...
10
votes
4answers
4k views

How can I convert an RGB image to grayscale but keep one color?

So I am trying to create an effect similar to Sin City or other movies where they remove all colors except one from an image. I have an RGB image which I want to convert to grayscale but I want to ...
10
votes
4answers
2k views

RGB values of visible spectrum

I need an algorithm or function to map each wavelength of visible range of spectrum to its equivalent RGB values. Is there any structural relation between the RGB System and wavelength of a light? ...
10
votes
4answers
3k views

HSL in .net

What tools have you used for working with HSL colors in .net?
9
votes
1answer
172 views

In R, is it possible to overlay 2 colours in a plot to make a 3rd (e.g. with additive or subtractive colour mixing)

I'd like to do a scatter plot with 2 categories of the data, one plotted in yellow and one in blue, and them showing up in green where they overlay (or any other combination). I've found that things ...
9
votes
6answers
4k views

IE6 - can't load a normal JPG

Try loading this normal .jpg file in Internet Explorer 6.0. I get an error saying the picture won't load. Try it in any other browser and it works fine. What's wrong? The .jpg file is just a normal ...
8
votes
3answers
2k views

how to get RGB values of bitmap in android

I want to get RGB values of bitmap in android but I cant do this so far. My aim is to obtain RGB values for each pixel of bitmap. Is there any specific function for android or anything else ?? Also I ...
8
votes
3answers
13k views

How to get RGB values from UIColor?

Im creating a color object using the following code. curView.backgroundColor = [[UIColor alloc] initWithHue:229 saturation:40 brightness:75 alpha:1]; How can I retrieve RGB values from the created ...
8
votes
6answers
8k views

Converting hex color to RGB and vice-versa

What is the most efficient way to do this?
7
votes
4answers
292 views

Shift hue of an RGB Color

I'm trying to write a function to shift the hue of an RGB color. Specifically I'm using it in an iOS app, but the math is universal. The graph below shows how the R, G, and B values change with ...
7
votes
5answers
3k views

Compare RGB colors in c#

I'm trying to find a way to compare two colors to find out how much they are alike. I can't seem to find any resources about the subject so I'm hoping to get some pointers here. Idealy, I would like ...
7
votes
2answers
3k views

jquery css color value returns RGB?

In my CSS file: a, a:link, a:visited { color:#4188FB; } a:active, a:focus, a:hover { color:#FFCC00; } I tried with: var link_col = $("a:link").css("color"); alert(link_col); // returns rgb(65, ...
7
votes
7answers
5k views

RGB Int to RGB - Python

How can I convert an RGB integer to the corresponding RGB tuple (R,G,B)? Seems simple enough, but I can't find anything on google. I know that for every RGB (r,g,b) you have the integer n = r256^2 + ...
7
votes
3answers
3k views

How do i get red green blue and alpha back from a UIColor object?

I am getting a UIColor returned from this method: - (UIColor *)getColor { return [UIColor colorWithRed:redSlider.value green:greenSlider.value blue:blueSlider.value alpha:1.0]; } and getting ...
7
votes
6answers
4k views

Programmatically choose high-contrast colors

This should be a simple question, but I haven't been able to find a way to make it work. Essentially, I have a silly localhost page that I use in my webdevelopment. When I am surfing between our ...
6
votes
1answer
645 views

get average color from bmp

I am developing a taskbar for the 2nd screen(something like displayfusion). However, I'm having difficulty at getting the right average color from the icon. For example Google Chrome/ When I hover ...
6
votes
5answers
1k views

Calculation of a mixed color in RGB

I want to be able to take two RGB-256 vectors and calculate the result of their mixture. Also I want to be able to give each vector a different weight. I've experimented with it using the Word color ...
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 = ...
6
votes
4answers
1k views

RGB value to HSL converter

Google maps api v3 allows "styles" to be applied to the map, including setting the color of various features. However, the color format it uses is HSL (or what seems like it): hue (an RGB hex ...
6
votes
3answers
7k views

Convert RGBA color to RGB

How to convert a RGBA color tuple, example (96, 96, 96, 202), to corresponding RGB color tuple? Edit: What's I want is to get a RGB value which is most similar to the RGBA tuple visually on white ...
6
votes
3answers
3k views

Need help with YUV display in OpenGl

I am having trouble displaying a raw YUV file that it is in NV12 format. I can display a selected frame, however, it is still mainly in black and white with certain shades of pink and green. Here is ...
6
votes
8answers
2k views

How do I reduce a bitmap to a known set of RGB colours

For a hobby project I'm going to build a program that when given an image bitmap will create a cross-stitch pattern as a PDF. I'll be using Cocoa/Objective C on a Mac. The source bitmap will ...
6
votes
4answers
2k views

Generating gradients programatically?

Given 2 rgb colors and a rectangular area, I'd like to generate a basic linear gradient between the colors. I've done a quick search and the only thing I've been able to find is this blog entry, but ...
6
votes
5answers
3k views

RGB to monochrome conversion

How do I convert the RGB values of a pixel to a single monochrome value?
5
votes
2answers
343 views

sorting images by color

I'm looking for a way to sort images as in the following screenshot: http://www.pixolution.de/sites/LargeImages_en.html I've looked at all the threads on this topic on stackoverflow but none of the ...
5
votes
3answers
777 views

Format of TYPE_INT_RGB and TYPE_INT_ARGB

Could anyone explain for me how java stores color in TYPE_INT_RGB and TYPE_INT_ARGB ? Do these lines of code work properly for calculating red, green and blue ? int red= (RGB>>16)&255; int ...
5
votes
2answers
408 views

How to replace color of an image?

I want to replace color of an image. For example turn all blue colors to red without any distortion on shape. When i try this i can swap the colors by iterating every pixel, however the shape of the ...
5
votes
3answers
969 views

SIMD: Why is the SSE RGB to YUV color conversion about the same speed as the c++ implementation?

I've just tried to optimize an RGB to YUV420 converter. Using a lookup table yielded a speed increase, as did using fixed point arithmetic. However I was expecting the real gains using SSE ...
5
votes
2answers
264 views

Is there any client-side technology able to convert sRGB to CMYK through an ICC color profile?

Is there any technology available in a browser (client-side) able to convert sRGB colors to CMYK and vice versa using a specified ICC color profile? I'm currently using a hidden Java applet for the ...
5
votes
2answers
576 views

How can I convert between RGB565 and RGB24 image formats in MATLAB?

I am getting an RGB matrix from a microprocessor that outputs an image in RGB565 format. I want to read this into MATLAB, convert it to RGB24 format, and output the image. How do I do this?
5
votes
1answer
2k views

How can I convert RGB hex string into UIColor in objective-c?

I have color values coming from the url data is like this, "#ff33cc". How can I convert this value into UIColor? I am attempting with the following lines of code. I am not getting the value for ...
5
votes
2answers
1k views

CSS3 - Validator - RGBA wrong?

I'm using the W3C CSS Validator with the Profile CSS3 but the validator says that my CSS rgba()'s are wrong. I looked up the Color Module Level 3, and the syntax is the same as mine. I also tried ...
5
votes
6answers
7k views

How does one convert 16-bit RGB565 to 24-bit RGB888?

I’ve got my hands on a 16-bit rgb565 image (specifically, an Android framebuffer dump), and I would like to convert it to 24-bit rgb888 for viewing on a normal monitor. The question is, how does one ...
5
votes
2answers
5k views

Convert System.Drawing.Color to RGB and Hex Value

Using C# I was trying to develop the following two. The way I am doing it may have some problem and need your kind advice. In addition, I dont know whether there is any existing method to do the same. ...

1 2 3 4 5 9