Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms (1)

21
votes
9answers
3k views

Function for creating color wheels

This is something I've pseudo-solved many times and never quite found a solution that's stuck with me. The problem is to come up with a way to generate N colors that are as distinguishable as possible ...
19
votes
6answers
461 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 ...
15
votes
3answers
2k views

Is there an algorithm for color mixing that works like mixing real colors?

The common mixing of RGB colors is very different from mixing colors for paintings, it's mixing of light instead mixing of pigments. For example: Blue (0,0,255) + Yellow (255,255,0) = Grey ...
8
votes
2answers
471 views

What's wrong with this RGB to XYZ color space conversion algorithm?

My goal is to convert an RGB pixel into CIELab color space for some special calculations only possible in CIELab. For this, I must convert RGB to XYZ first, which is the really hard part. I tried to ...
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, ...
8
votes
4answers
505 views

Color similarity/distance in RGBA color space

How to compute similarity between two colors in RGBA color space? (where background color is unknown of course) I need to remap RGBA image to a palette of RGBA colors by finding best palette entry ...
8
votes
3answers
982 views

How can I use the HSL colorspace in Java?

I've had a look at the ColorSpace class, and found the constant TYPE_HLS (which presumably is just HSL in a different order). Can I use this constant to create a Color from hue, saturation, and ...
8
votes
5answers
2k views

Generate unique colours

I want to draw some data into a texture: many items in a row. They aren't created in order, and they may all be different sizes (think of a memory heap). Each data item is a small rectangle and I want ...
7
votes
1answer
372 views

How to generate different colors of same luminance for line chart in Java?

I want to generate different colors for my line graphs: I want to generate equally different colors (for human eye) I want them to be the same luminance (not computed brightness) (this rules out ...
6
votes
3answers
569 views

Can I use libjpeg to read JPEGs with an alpha channel?

There seems to be some debate about whether JPEGs with alpha channels are valid or not. The answer I had always understood to be correct is that in the JPEG FAQ, which is essentially "No". (This is ...
6
votes
4answers
604 views

CMYK + CMYK = ? CMYK / 2 =?

Suppose there are two colors defined in CMYK: color1 = 30, 40, 50, 60 color2 = 50, 60, 70, 80 If they were to be printed what values would the resulting color have? color_new = min(cyan1 + cyan2, ...
5
votes
1answer
297 views

Sort System.Media.Colors according to position in visible spectrum

Whats the quickest/easiest way to sort the colors in the System.Media.Colors according to its position in the visible spectrum (red to blue or blue to red doesn't matter) ? EDIT: Here is the result ...
5
votes
1answer
56 views

Best resources to learn about graphics and imaging?

Having spent a bunch of time recently doing 2D work that involves pixel manipulation of bitmaps and blending/compositing, I've run up against the limits of my own understanding with respect to ...
4
votes
1answer
141 views

Should the result of sRGB->CIEXYZ->discard luminance be convertible back to sRGB?

I'm writing shadow removal for my pony detector. After I've converted a PNG image from sRGB to CIE XYZ I remove the luminance as per instructions: When I try to convert the image back to sRGB for ...
4
votes
2answers
254 views

Calculate CMYK coverage on PDF

I don't suppose is there any free or open source libraries out there that able to calculate the CMYK coverage on a pdf file. I tried looking around I don't seem to able to find any. If there isn't any ...
4
votes
3answers
4k views

BGR Color Space

I understand RGB --- value (0-255)Red,(0-255)Green,(0-255)Blue to form a color. What is exactly BGR color space ? How is it different from RGB color space ?
3
votes
1answer
125 views

How do I determine an image's color space in Java?

I am trying to determine an image's color space in Java. I believe this is referred to as "imageType" in the BufferedImage class. This is the line of code which causes me trouble - I don't know what ...
3
votes
3answers
1k views

Java: how to convert RGB color to CIE Lab

How can I present object Color in CIE Lab color model. Color c = ... float[] lab = {0,0,0}; ... c.getColorComponents(ColorSpace.getInstance(???), lab); But I wasn't able to force this work with CIE ...
3
votes
1answer
292 views

Use a LinearGradientBrush in another LinearGradientBrush?

I'm trying to use one LinearGradientBrush in the Definition of another LinearGradientBrush. But I've no idea weather this would even work, and if it works, I need to know how. For Example: ...
2
votes
1answer
145 views

Repeated Scene items in iOS YUV video capturing output

I capture a video and handle the resulting YUV frames. the output looks like the following: Although it appears normally on my phone's screen. But my peer receives it like that img above. Every ...
2
votes
1answer
59 views

How much worse is sRGB than L*a*b* when computing the eucleidan distance between colors?

L*a*b* is the best way of doing it, but converting to it is complicated, and I'm lazy. How much accuracy am I giving up by operating on sRGB directly?
2
votes
2answers
194 views

How do I find the RGBA value of a color from two RGB values?

I have a hunch this has been done before but I am a total layman at this and don't know how to begin to ask the right question. So I will describe what I am trying to do... I have an unknown ARGB ...
2
votes
1answer
795 views

RGB to HSV conversion using PIL

I'm trying to automate the enhancement of some images that are to be transfered to a digital frame. I have code in place that resizes, adds a date/time to the least-significant (least details) corner ...
2
votes
1answer
909 views

Converting to YUV / YCbCr colour space - many versions

There are many different colour conversions to YUV but they all have different results! Which one is officially correct? This is the output from my test program. I have input R=128 G=50 B=50 (max ...
2
votes
2answers
2k views

Using PIL and NumPy to convert an image to Lab array, modify the values and then convert back

I am trying to convert a PIL image into an array using NumPy. I then want to convert that array into Lab values, modify the values and then convert the array back in to an image and save the image. I ...
2
votes
3answers
975 views

OpenGL Colorspace Conversion

Does anyone know how to create a texture with a YUV colorspace so that we can get hardware based YUV to RGB colorspace conversion without having to use a fragment shader? I'm using an NVidia 9400 and ...
2
votes
4answers
991 views

How to read and modify the colorspace of an image in c#

I'm loading a Bitmap from a jpg file. If the image is not 24bit RGB, I'd like to convert it. The conversion should be fairly fast. The images I'm loading are up to huge (9000*9000 pixel with a ...
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
57 views

How do I convert an image with colorspace YCbCr to CMYK?

I've got images that have a YCbCr colorspace. But I want to make them CMYK. How do I do that? A Perl solution would be great. A command line (Ubuntu) solution would be good. I've tried using ...
1
vote
1answer
37 views

Gamma correction in Y'CbCr space

I need to do gamma correction on images in Y'CbCr space so I can bring out details in saturated and starved areas in an image and I'm wondering if I need to adjust the chroma sub channels? I know ...
1
vote
1answer
288 views

Convert RGB JPEG to CMYK JPEG using ColorConverterOp Java

I am attempting to convert a jpeg image in rgb to CMYK colorspace. The only problem is my final output is always a black image. But interesting enough the preview application in MAC shows the image ...
1
vote
1answer
427 views

ARGB to YUV && Color Spaces in .NET

I noticed that Color struct from System.Drawing represents color in ARGB color space. So there are some questions: How to convert image beetween ARGB and YUV in c#? I found formulas describing RGB ...
1
vote
1answer
159 views

Saving colorspace in jpeg

I have a servlet to convert and cache smaller versions of photographs. It is implemented using java.awt.image + javax.imageio and a third party resample filter. The originals are all uploaded with an ...
1
vote
0answers
388 views

Changing hue of CGImage using iPhone SDK

Is there a way to change the hue of a CGImage using the iPhone SDK? I've been trying to get this to work but haven't been able to figure it out. How do I go about accessing and modifying the hue ...
1
vote
1answer
195 views

How to calculate color shadows codes?

I would like to know / calculate color codes of N red shadows (N can be 5, 20, or 50, for example). How could I do this ? I noticed, for example, that the following gives some red shadows: R = ...
1
vote
1answer
878 views

CIELab Colorspace conversion

Is there a canonical colorspace conversion library? I can't find any pre-existing solutions. Is CIELab conversion is too obscure?
1
vote
1answer
480 views

How to get OpenGL to display NV12 texture in Cocoa

I have a YUV:420 (aka NV12) frame data, how can I get OpenGL to recognize its format for glTexImage2D() rendering. I realize that I might have to perform colorspace transformation, but is there a way ...
1
vote
5answers
3k views

Converting JPEG colorspace (Adobe RGB to sRGB) on Windows (.Net)

I need to generate thumbnail and medium sized images from large photos. These smaller photos are for display in an online gallery. Many of the photographers are submitting JPEG images using Adobe ...
1
vote
3answers
669 views

How to isolate a single color in an image

I'm using the python OpenCV bindings and at the moment I try to isolate a colorrange. That means I want to filter out everything that is not reddish. I tried to take only the red color channel but ...
0
votes
1answer
26 views

Is there a way to set a default color for transparency when using ColorConvertOp in Java2D?

I'm converting an image with transparency in it into a Colorspace that doesn't have transparency. I'd like to set a background color for the transparent areas. Right now when I convert it any area ...
0
votes
0answers
49 views

How do I get the palette index of a pixel from UIImage/CGImage/CGImageRef?

There are several well answered questions for getting the RGB value of a pixel, but all of them require rendering the image into a buffer at 4 bytes/pixel. Unfortunately, I have many images to ...
0
votes
0answers
127 views

Extracting cell color inside pdf table

Could You advice me how to retrieve cell background color while parsing pdf document with table inside it using itextsharp. I would like to get information about which cell is coloured and what colour ...
0
votes
1answer
92 views

NSColor: colorWithDeviceRed… is not working on second monitor

In order to be able to calibrate a monitor, I must be able to drive it in device RGB values. In order to do this I create a NSColor by: [NSColor colorWithDeviceRed:(colorsPtr[cnt]/255.0f) ...
0
votes
2answers
99 views

Self Organizing maps(SOM) not effective in clustering images in the color space?

I am trying to reproduce the experiments on the ai-junkie website http://www.ai-junkie.com/ann/som/som1.html to cluster/group different colors together using Self Organizing maps(SOM) on a larger ...
0
votes
1answer
1k views

BGRA on iPhone glTexImage2D and glReadPixels

Looking at the docs, I should be able to use BGRA for the internal format of a texture. I am supplying the texture with BGRA data (using GL_RGBA8_OES for glRenderbufferStorage as it seems BGRA there ...
0
votes
1answer
246 views

Preserving colors during CMYK to RGB transformation in PIL

I'm using PIL to process uploaded images. Unfortunately, I'm having trouble with color conversion from CMYK to RGB, as the resulting images tone and contrast changes. I'd suspect that it's only doing ...
0
votes
2answers
841 views

RGB to HSL, hue calculation is wrong

I'm trying to convert a RGB32 value to HSL because I want to use the Hue component. I have used some examples that I found online to create this class: public class HSLColor { public ...
0
votes
1answer
233 views

How would I represent an HSL and an RGB color as a class in C#?

How would I write a class in C# that represents an HSL color and an RGB color? Once I have that, is it possible to add a method that prints out each of the class attributes? I've heard about ...
0
votes
2answers
326 views

Plotting RGB spectrum as 2-d color matrix?

Any suggestions on how I might go about plotting the RGB color space as a 2-D matrix? I need a theoretical description of what's going on; a code sample or pseudocode would be helpful but is not ...
0
votes
1answer
469 views

hex <-> RGB <-> HSV Color space conversion with Python

For this project I use Python's colorsys to convert RGB to HSV vice versa to be able to manipulate saturation and lightness, but I noticed that some colors yields bogus results. For example, if I ...

1 2