Tagged Questions

2
votes
3answers
109 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
344 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 …
1
vote
1answer
41 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
4answers
667 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
1answer
328 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
274 views

How do I edit an interface builder object programmatically?

I created a label using Interface Builder, and now I want to set the background color of the label using code instead of IB's color picker. (I want to do this so that I can define the color using RGB …
0
votes
0answers
18 views

Need help creating ICC based CMYK colorspace on iPhone

Hello all, I'm a newbie with iPhone programming, and I'm trying to create a custom ICC colorspace to create colors in. The "DeviceCMYK" is not accurate enough, so I need the ICC colorspace. I can't …
0
votes
1answer
676 views

convert rgb 2 black & white in opencv

i need to know the function that convert RGB image into black &white(binary image) & i need to know if i can save modified image after conversion on hard disk if so what's this function?
0
votes
1answer
188 views

Simulate Photoshop’s saturation changes in Imagemagick

In Photoshop you can adjust the hue, saturation and lightness of an image with three sliders. ImageMagick you can modulate the brightness, saturation, and hue. Minimizing the saturation correctly …
0
votes
0answers
348 views

How to set icc color profile in Java and change colorspace

Hi all, First, I would like to say I'm not an image processing specialist. Well, I would like to convert image colorspace from one to another, and change icc color profile at the same time. I managed …
0
votes
3answers
850 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 ? Thanks for sharing