The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
2answers
39 views

Inverse of rgb2ycbcr() in Octave? (No ycbcr2rgb)

How do I convert the output of rgb2ycbcr back to RGB in Octave? I can't find a ycbcr2rgb function in the image package.
1
vote
1answer
43 views

What to do with iText “Unexpected color space /CS0” type of exceptions

I have some files generated by unknown source that open just fine in PDF browsers (Reader/Foxit) but iText fails to process them. For particular file I get: Exception in thread "main" ...
0
votes
2answers
79 views

Convert image color space to RGB in Python

I'm working on the image processing script(Python with PIL library) and i need to convert color space of any image to RGB. I've tried this trick, but it works only with png images in RGBa color space: ...
4
votes
3answers
254 views

How can I best detect different LED colours using an Android phone's camera and OpenCV?

I am trying to identify and differentiate the colours of LEDs against a black background using OpenCV on an Android phone, but am currently struggling. My investigations to date point to two separate ...
3
votes
1answer
100 views

Converting RGB to HLS and back

I'm using python's colorsys library to convert RGB color values to HLS. Just to verify, I tried converting back to RGB and got a different value back. I can understand minor differences because of ...
0
votes
0answers
18 views

I need some help getting “IWantHue” Javascript working

I can't seem to get IWantHue's Javascript palette generation code working, though it seems so simple. I'm getting a "color doesn't have the method 'hcl' error." Here is IWantHue's website: ...
3
votes
1answer
126 views

Plotting Luv colors; replicating figure 6.11 from the ggplot2 book

I am trying to replicate figure 6.11 from Hadley Wickham's ggplot2 book, which plots R colors in Luv space; the colors of points represent themselves, and no legend is necessary. Here are two ...
0
votes
1answer
366 views

ImageMagick: convert keeps changing the colorspace to Gray. How to preserve sRGB colorspace?

I have a batch script that converts my PNG-24 (with Transparency) images to 50% and 25% size (for mobile development). Usually these images have colors in them but now I am trying to convert an image ...
0
votes
1answer
82 views

HVS color space in Open CV

I am going to detect a yellow color object when i open up my System CAM using Open CV programming, i got some help from the tutorial Object Recognition in Open CV but i am not clear about this line of ...
0
votes
2answers
85 views

What does it mean to change the color channel?

Does it mean to control the combination between an image and a color overlay applied to it depending on the color space used (RGB, RGBA, CMYK, Lab, Grayscale, HSL, HSLA)? Or does it mean to change the ...
1
vote
1answer
117 views

Bayer to HSV using openCV

does somebody know is there is a function somewhere available (based on OpenCV), to convert bayer images to HSV colourspace? Or do I have to do the step via RGB?
0
votes
0answers
95 views

Which color space is better for computing color moments of an image? [closed]

I have written a code in opencv which finds the color moments (mean, Standard dev and skewness) of frames of a video. One has to first convert the BGR space of opencv into an appropriate space of ...
0
votes
0answers
26 views

What colour transfer function to use for a QuickTime file without NCLC atom?

I have various 1080P QuickTimes files using H.264 and MPEG-4 codecs created via QuickTime and Handbrake. They don't seem to have the NCLC atom. I want to know which transfer function to use to ...
0
votes
3answers
135 views

Modify pdf metadata color space using CoreGraphics

I m trying to change color space for image objects of a pdf file, but first problem is that I cannot find ICC color profile inside pdf metadata. All I have in Metadata is one array with 2 components: ...
0
votes
0answers
119 views

RMagick & GIF files / Convert to black and white

With the following code img = Magick::ImageList.new(self.image.path)[0] img = img.quantize(256, Magick::GRAYColorspace) I can't turn GIF images to black and white (grayscale), code that ...
2
votes
1answer
95 views

What are the exact color spaces of DXGI_FORMATs?

In the official documentation of DXGI_FORMAT, it tells us that only a format with _SRGB enumeration postfix is in sRGB color space. I thought other format without this postfix are all in the linear ...
4
votes
3answers
679 views

Convert an image RGB->Lab with python

What is the preferred way of doing the conversion using PIL/Numpy/SciPy today?
0
votes
1answer
65 views

Safari ignores colorspace of images in canvas

I have the following problem: I have pictures in <img>-elements on a site. They are all in srgb colorspace, this information is included in all of them. They look just like they should in ...
0
votes
0answers
46 views

How to change chroma (in LCHab) of an image with ImageMagick?

I want to change chroma (in the sense of the LCHab color space) of an image with some command-line utility. I think ImageMagick is suitable for this task. It has the modulate command, but it operates ...
0
votes
0answers
184 views

Fast algorithm for RGB <--> HSL conversion

I'm looking for fast algorithms (typically using integers only) for converting RGB data to HSL data and then converting back to RGB data. I've found algorithms (wikipedia) for these conversions but ...
0
votes
1answer
196 views

DirectShow ColorConverterDMO filter won't accept input formats that it advertises?

I'm trying to use the ColorConverterDMO in my DirectShow filter graph to convert from UYVY to RGB32, but it is particularly uncooperative in allowing connections to it's input pin. For example, if I ...
0
votes
0answers
198 views

Colorspace conversion in OpenGL

Is there a way to do a color conversion in OpenGL (e.g. from RGB to YUV420p back and forth)? I can either use the contents of the back buffer, a texture or a FBO. I saw this question here, but is ...
7
votes
2answers
235 views

What are the practical differences when working with colors in a linear vs. a non-linear RGB space?

What is the basic property of a linear RGB space and what is the fundamental property of a non-linear one? When talking about the values inside each channel in those 8 (or more) bits, what changes? ...
0
votes
0answers
181 views

Does videoInput guarantee rgb camera input? (Transfering image from videoInput/dshow -> Java BufferedImage)

I am using videoInput to get a live stream from my webcam, but I've ran into a problem where videoInput's documentation implies that I should always be getting a BGR/RGB, however, the "verbose" output ...
2
votes
1answer
260 views

How to convert RGB to HSL in C?

How do I convert RGB to HSL in C/C++? (Note: This is a (short) self-answer -- I posted it here so people can find it quickly with a search.)
0
votes
3answers
269 views

Iphone app crash when releasing CGColorSpaceRef

I am using CGColorSpaceRef and when i release it, its crash. The Way i creates it and release CGColorSpaceRef colorSpace = CGColorSpaceCreateDeviceRGB(); After doing some task and then release ...
0
votes
2answers
299 views

Alternative to sws_scale

I am performing encoding of the captured windows screen with x264 using libavcodec. Since, the input is RGB, i am converting it to YUV to make it compatible with x264. I am using the sws_scale ...
0
votes
0answers
206 views

How to render NV12 with DirectShow default “Video Renderer”

I'm trying to develop a Video Source DirectShow filter. The following graphs works : [ h264 source ] -> [ Elecard H264 decoder ] -> [ Video Renderer ] [ h264 source ] -> [ MS DTV-DVD decoder ] -> [ ...
0
votes
1answer
162 views

CGDisplayCreateImageForRect image does not match colors with captured image

I'm capturing a 1px x 1px screenshot with the following code. I then sample the image and get a NSColor. CGImageRef image = CGDisplayCreateImageForRect(displayID, CGRectMake(0, 0, 1, 1)); ...
0
votes
1answer
236 views

ImageMagick's composite on HSL (not HSB nor HSV)

Just I want to do is to replace Photoshop's HSL-based blend modes (color/hue/saturation/luminosity) by writing a CUI tool. Better if I can do it via RMagick. ImageMagick can manage HSL colorspace, ...
0
votes
1answer
61 views

Microsoft Lync colospaces for DirecShow

I'm developping a DirectShow filter which will act as an adapter between my ip camera and Microsoft Lync. I'm not sure what colorspaces formats are supported. Any clue on where I can find such ...
0
votes
0answers
102 views

Equivalence between 3-points DCT and HSV color transform

I was looking to perform a color decorrelation on a RGB image. I know that various color spaces present various decorelation power, used notably to perform image compression. The optimal ...
1
vote
1answer
386 views

How to use CIELAB to obtain illumination invariance in image processing?

I found out that taking the Euclidean distance in RGB space to compare two colors in applications like image segmentation is not recommended because of its dependence on illumination and lighting ...
1
vote
0answers
161 views

What's the proper way to encode PANTONE colours in SVG files?

I have an application that spits out SVG images, and for printing purposes, I would want it to produce properly encoded PANTONE colours (where known). The SVG specs are not very detailed in how the ...
0
votes
0answers
87 views

Colorspace of html5 pixel manipulations?

I'm struggling to make sense from the spec [1][2] regarding the colorspace of the samples you get by using ctx.getImageData() and ctx.createImageData() on an html5 2D context. My understanding of the ...
2
votes
1answer
425 views

Representing white color in CIE L*a*b* to RGB conversion using opencv

I am using opencv for a certain image processing code. I need to extract the color layers from a certain picture. So what I do is keep the pixels having a certain value and set the remaining pixels to ...
0
votes
1answer
491 views

YUVY format representation - v4l2 Specification?

This is the exerpt from the famous V4l2 Api specification.But I am not able to understand the YUYV also known as YUV422 format representation. Can some one plz explain this here. Here is the excerpt ...
3
votes
2answers
442 views

How to calculate mix of 4 colors defined in CIELAB L*a*b* model?

I have 4 colors that I converted from RGB to CIELAB L*a*b* model. How can I calculate mix of these 4 colors when I have (L,a,b) for each such color? How can I calculate same mix, if I want to put ...
0
votes
1answer
155 views

python conversion between color spaces

I wanted to convert from rgb to hsv but the results seem to be unexpected Following is the code import colorsys print colorsys.rgb_to_hsv(144, 190, 255) and it prints following (0.5, ...
0
votes
2answers
572 views

iPhone iOS how to instantiate a black and white CGColorSpaceRef?

I'm working with this excellent example of converting an image to grayscale: Convert Image to B&W problem CGContext - iPhone Dev However, for my purposes, I would like to have only pure black ...
4
votes
3answers
279 views

Should WebGL shader output be adjusted for gamma?

Should a WebGL fragment shader output gl_FragColor RGB values which are linear, or to some 1⁄γ power in order to correct for display gamma? If the latter, is there a specific value to use or must a ...
1
vote
1answer
327 views

Correct formula for determining the hue of a CIE L*a*b* color

EasyRGB gives the following formula for determining the hue (and chroma) of a CIE L*a*b* color: var_H = arc_tangent( CIE-b*, CIE-a* ) //Quadrant by signs if ( var_H > 0 ) var_H = ( var_H / PI ) ...
1
vote
2answers
118 views

Is it possible to use a rgY color space?

Would it be possible to take a rgY color space: r = R / (R + G + B) g = G / (R + G + B) Y = R * 0.299 + G * 0.587 + B * 0.114 (unnecessary) b = 1 - r - g and convert it back to RGB? If so, how ...
1
vote
2answers
430 views

Lossless RGB to Y'CbCr transformation

I am trying to losslessly compress an image, and in order to take advantage of regularities, I want to convert the image from RGB to Y'CbCr. (The exact details of what I mean by RGB and Y'CbCr are not ...
1
vote
1answer
211 views

Create color out of RGB gives another color than original RGB

I need to create a Color object out of the RGB color of a pixel (of a BufferedImage object which reads a PNG file, BufferedImage colorspace is BufferedImage.TYPE_4BYTE_ABGR). However on some colors ...
0
votes
1answer
345 views

Change color space of exisiting BufferedImage?

Is it possible to change the color space of an existing BufferedImage object without copying all pixels to a new BufferedImage object? I couldn't find a method for that, but maybe I just didn't find ...
4
votes
1answer
185 views

Does PDFBox Support Spot Colors and Separations?

I am interested in using PDFBox for a project that requires being able to specify spot colors and color separations in PDF output to go to a professional printer and am curious as to whether or not it ...
1
vote
1answer
100 views

Syntax for math equation is not correct

I'm trying to convert XYZ values to LAB* using the formula available here. The problem is, when I go through the formula - the output for the three variables var_X,var_Y and var_Z is always 1.00. ...
0
votes
0answers
199 views

Convert sRGB to Lab in R with convertColor

I'm trying to work with Lab colour, and need to do conversions from sRGB, ideally with R. I've just given converColor a go, and am a little confused. As a test, I'm converting the Macbeth ColorChecker ...
1
vote
0answers
124 views

Direct conversion from YCbCr to CIE L* a* b*

I would like to convert a pixel value in YUV (YCbCr) to CIE L* a* b* color space. Do I have to go through RGB and CIEXYZ color space or do anyone know a formula for direct conversion?

1 2 3