Tagged Questions
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 ...
5
votes
3answers
967 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 ...
4
votes
1answer
273 views
PIL's colour space conversion YCbCr -> RGB
The algorithm used by PIL v1.1.7 gives me 'washed out' looking results. When I convert the same source data using ffmpeg it looks normal. Using mplayer gives identical results to ffmpeg (probably ...
3
votes
3answers
813 views
help me improve my sse yuv to rgb ssse3 code
I am looking to optimise some sse code I wrote for converting yuv to rgb (both planar and packed yuv functions).
i am using SSSE3 at the moment but if there are useful functions from later sse ...
3
votes
1answer
3k views
Automatic YUV -> RGB in DirectShow for custom decoder
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. Now, I want to make a ...
2
votes
1answer
203 views
YUV to RGBA on Apple A4, should I use shaders or NEON?
I'm writing media player framework for Apple TV, using OpenGL ES and ffmpeg.
Conversion to RGBA is required for rendering on OpenGL ES, soft convert using swscale is unbearably slow, so using ...
2
votes
2answers
384 views
How to convert RGB565 to YUV420SP faster on android?
I need display a jpeg picture, and convert it to YUV420SP. First I use SkBitmap to parse jpeg and display it, then I use the code below to convert RGB565 to YUV420SP on android, but it spend 75ms to ...
2
votes
2answers
371 views
need to create a webm video from RGB frames
I have an app that generates a bunch of jpgs that I need to turn into a webm video. I'm trying to get my rgb data from the jpegs into the vpxenc sample. I can see the basic shapes from the original ...
2
votes
2answers
3k 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 ...
1
vote
2answers
96 views
How to retrieve RGB value for each color apart from one dimensional integer RGB array
I am not too familiar with bit shifting so I have the following question.
I use the function below (found elsewhere) to decode from YUV to an RGB int array.
Now I want to adjust red or green or blue ...
1
vote
2answers
391 views
DirectShow RGB-YUV filter
I would like to encode video in my app with VP8. I use RGB24 format in my app but VP8 DirectShow filter accepts only YUV format (http://www.webmproject.org/tools/#directshow_filters).
I've googled ...
1
vote
2answers
980 views
YUV420 to RGB conversion
I converted an RGB matrix to YUV matrix using this formula:
Y = (0.257 * R) + (0.504 * G) + (0.098 * B) + 16
Cr = V = (0.439 * R) - (0.368 * G) - (0.071 * B) + 128
Cb = U = -(0.148 * R) - ...
1
vote
0answers
171 views
How to convert a YCbCr(YUV) 4:4:4 image to 4:2:2 in java?
I can convert a rgb image to a YCbCr image, but i have no clue how to put it in 4:2:2
The objective is to create a lossy compreession program
any help?
1
vote
2answers
833 views
Fast RGB => YUV conversion in OpenCL
I know the following formula can be used to convert RGB images to YUV images. In the following formula, R, G, B, Y, U, V are all 8-bit unsigned integers, and intermediate values are 16-bit unsigned ...
1
vote
2answers
2k views
GPU YUV to RGB. Worth the effort?
I have to convert several full PAL videos (720x576@25) from YUV 4:2:2 to RGB, in real time, and probably a custom resize for each.
I have thought of using the GPU, as I have seen some example that ...
1
vote
1answer
753 views
Conversion from YUV444 to RGB888
I am new in this field and i desperately need some guidance from u all.
I have to support yuv444 to rgb 888 in display driver module.
There is one test which i have done for yv12 → rgb565 in ...
1
vote
1answer
271 views
Overlay Surface
Dear All
What is overlay surface? I have to work currently on overlay surface and for which i should know the concept of overlay surface? As i have to wrok on converting YUV444->RGB888
Thanks in ...
1
vote
3answers
4k views
How to display a raw YUV frame in a Cocoa OpenGL program
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 how to start. I ...
0
votes
0answers
11 views
histogram equalization with YUV
I'm trying to equalize the luminance on a RGB picture by converting the values to YUV to get the luminance and then converting them back into RGB.
I works with b/w image (U & V values are all 0) ...
0
votes
0answers
97 views
how to display data of yuv format without converting rgb in OpenGL ES?
I have being study about OpenGL ES for iOS.
I wonder that data of YUV format is can display without converting RGB.
In most, the yuv data have to convert RGB for display. But, converting process is ...
0
votes
0answers
211 views
OpenGL ES yuv to rgb
I am starting with OpenGL ES on the iPhone. I am trying to render a yuv texture with es2. But the image rendered on screen is strange. I am pretty sure the y plane is right. Maybe I got something ...
0
votes
4answers
307 views
Correct YUV422 to RGB conversion
I've been trying to tackle a YUV422 into a RGB conversion problem for about a week. I've visited many different websites and have gotten different formulas from each one. If anyone else has any ...
0
votes
0answers
200 views
How to convert YUY2 16bit DIB* to RGB 24bit Bitmap
I have a DVR card that gives image as DIB* in the form of YUY2 16bit format. If i use DrawDIB it show image at UI perfectly, but i need to save it as Bitmap.
I have an ActiveX written in C++ that ...
0
votes
1answer
579 views
convert YUV422 to RGB24
I tried to write an YUV422 to RGB24 converter, but the result of the converted data seems to be strange.
The result is a violet touched greyscale Picture with some light green dots...
Does anyone has ...
0
votes
2answers
598 views
How to extract Y,U, and V components from a given yuv file using Matlab? Each component is used for further pixels level manipulation
Hey guys. I'm currently playing with YUV file. Do you have any suggestion on how to extract y,u,v components from a yuv video? I found a piece of program which was shown below. But I don't know which ...
0
votes
2answers
325 views
image format best for display
I am working on an image processing application. I have to display an image sequence. I would like to avoid any extra overhead for {internal} format conversions.
I believe RGB should be the optimal ...
0
votes
2answers
3k 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
480 views
How to perform RGB->YUV conversion with ActionScript?
How to perform RGB->YUV conversion with ActionScript?
Libs?
Tuts?
Articles?
-5
votes
1answer
61 views
What is the matlab's rgb2ycbcr formula? [closed]
What is the matlab's rgb2ycbcr formula?Which standarts are using for this