Tagged Questions

4
votes
3answers
380 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 …
2
votes
3answers
107 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
1answer
816 views

Automatic YUV -> RGB in DirectShow for custom decoder

Hello everybody, after hours of searching on the net I'm quite desperate to find solution for this. I've up & running OGG Theora decoder in DirectShow which ouputs YV12 and YUY2 color models. …
1
vote
3answers
668 views

YUV Conversion via a fragment shader…

I have implemented a YUV to RGB conversion via a fragment shader written in Nvidia's shader language. (Y, U and V are stored in separate textures that are combined via multi texturing in my fragment …
0
votes
2answers
98 views

How to perform RGB->YUV conversion in C/C++?

How to perform RGB->YUV conversion in C/C++? I have some Bitmap.. RGB I need to convert it to YUV Libs? Tuts? Articles?
0
votes
1answer
38 views

How to perform RGB->YUV conversion with ActionScript?

How to perform RGB->YUV conversion with ActionScript? Libs? Tuts? Articles?
0
votes
1answer
70 views

Writing YUV data into a CGContext

How can I write a YUV frame data into a CGContext?
0
votes
1answer
165 views

Where can I download a sample NV12 YUV frame.

I am writing a program to test NV12 YUV frames, I just want to download some sample clips? do anyone know a good site where I can download some frames off?
0
votes
1answer
156 views

Finding YUV file format in Cocoa

I got a raw YUV file format all I know at this point is that the clip has a resolution of 176x144. the Y pla is 176x144=25344 bytes, and the UV plan is half of that. Now, I did some readings about …
0
votes
3answers
604 views

How to display a raw YUV frame in a Cocoa OpenGL program

Hello everyone, I have been assigned wit the task to write a program that takes a sample raw YUV file and display it in a Cocoa OpenGL program. I am an intern at my job and I have little or no clue …
0
votes
1answer
252 views

Do all webcams use YUY2?

I've noticed that raw data from my webcam comes in the from of YUY2. Actually, this "raw data" is the input for an AVICAP callback, and I suppose that this is the actual data from the webcam. Anyway, …
-2
votes
0answers
96 views

YUV/PCM Visualizer to measure Lip Sync

I have a two dump files of raw video and raw audio from an encoder and I want to be able to measure the "Lip-sync". Imagine a video of a hammer striking an anvil. I want to go frame by frame and see …