Tagged Questions
The yuv tag has no wiki summary.
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
964 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
89 views
glPopMatrix() yells “unsupported texture format in setup_hardware_state”
I'm trying to make some optimizations in a private video player for Linux aiming to improve performance because playing MP4 files are heavy on the CPU, since the video frames are encoded in YV12 and ...
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
2answers
471 views
skin detection in the YUV color space?
can i perform skin detection using a set of rules (things like x1 < Y < x2 )
3
votes
1answer
554 views
Speeding up some SSE2 Intrinsics for color conversion
I'm trying to perform image colour conversion from YCbCr to BGRA (Don't ask about the A bit, such a headache).
Anyway, this needs to perform as fast as possible, so I've written it using compiler ...
3
votes
3answers
811 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
2answers
3k views
How to deal with RGB to YUV conversion
The formula says:
Y = 0.299 * R + 0.587 * G + 0.114 * B;
U = -0.14713 * R - 0.28886 * G + 0.436 * B;
V = 0.615 * R - 0.51499 * G - 0.10001 * B;
What if, for example, the U variable becomes ...
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
79 views
Problems converting YV12 to RGB through GLSL
I'm trying to accomplish YV12 to RGB conversion mentioned in this post with GLSL shaders.
My application loads a raw YV12 frame from the disk and tries to perform the conversion using GLSL shaders. ...
2
votes
0answers
80 views
Capture YUV frame from video playback on Android
I have an application on Android that plays video files stored on the SD card. I need to capture the YUV information for individual frames for a processing function that the software performs.
I am ...
2
votes
1answer
137 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
0answers
66 views
Android video encoding without ffmpeg
Is there a way of taking YUV frames and encoding them with something like H.264 and putting them into a mp4 container without using FFmpeg?
Does Android provide no way to encode video in their APIs? ...
2
votes
1answer
194 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
377 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
1answer
558 views
420YpCbCr8BiPlanarVideoRange To YUV420 ?/How to copy Y and Cbcr plane to Single plane?
i have captured video using AVFoundation .i have set (video setting )and get in outputsamplebuffer kCVPixelFormatType_420YpCbCr8BiPlanarVideoRange format. But i need YUV420 format for further ...
2
votes
1answer
927 views
Convert bitmap array to YUV (YCbCr NV21)
How to convert Bitmap returned by BitmapFactory.decodeFile() to YUV format (simillar to what camera's onPreviewFrame() returns in byte array)?
2
votes
1answer
448 views
Convert a YUV video stream to mp4
How to record YUV video and encode it to mp4 using h264 coded for mac application.
Plz suggest me any link on it.
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
1answer
905 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
511 views
How to get YUV video data stream from web cameras in C# NOT USING DIRECT SHOW?
What I need is raw camera data Stream of images\Frames in YUV format. I need to get tham using C#. And NOT USING DIRECT SHOW (if possible at all). I need a live stream not something like 1 frame per 5 ...
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
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
1answer
35 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
57 views
how to adjust image saturation in YUV color space
I want to know how to adjust image saturation in YUV color space, specially, the U component and the V component?
1
vote
2answers
94 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
1answer
145 views
Android processing a video, YCrCb frames to video
I want to process a video that I record on an Android phone by changing the color of the pixels. I know how to do the processing that I want, but I don't know the best way of putting everything ...
1
vote
1answer
172 views
Load RAW YUV video in OPENCV
I have a problem with a RAW YUB video load in OpenCV. I can play it in mplayer with the following command:
mplayer myvideo.raw -rawvideo w=1280:h=1024:fps=30:y8 -demuxer rawvideo
My code for load ...
1
vote
2answers
383 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
1answer
87 views
transparency implementation in YUV422 using only Y
Lets say we have 2 images in YUV422 format and assume that the second image Y field of value 0x10 is being transparent and merged on to the first one with Cb and Cr overwritten.
The product of such ...
1
vote
2answers
970 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
3answers
497 views
Convert YUV webcam image to java byte array
In Java, what is the most efficient way of converting a frame of PC webcam image data in YUV (I420 or YUY2) format to a byte (or integer) array?
1
vote
1answer
286 views
python PIL YCbCr support
trying to create an PIL image in YCbCr mode crashes even a fresh python/PIL installation from synaptic in my ubuntu 11.04
wim@wim-ubuntu:~$ python
Python 2.7.1+ (r271:86832, Apr 11 2011, 18:13:53)
...
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
1answer
216 views
YUV color space and chrominance
Ok. To be short suppose:
I have a monochrome image; And initially it represented in RGB color space.
I don't know in what sequence I shall do this, but I need to convert image to YUV space (a) and ...
1
vote
1answer
425 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
2answers
241 views
YUV subsampling chroma channels in python
when halving chroma channels width and/or height , what is the correct way to subsamble? i.e. supposing i am to have one chroma pixel for a 2x2 luma pixel, and i am sampling from a full res chroma ...
1
vote
1answer
764 views
How to pass a full YUV (YpCbCr) 4:2:0 frame to opengl
The native colorspace of the iphone 3gs camera is YpCbCr 4:2:0. I plan to do a lot of luminance processing in opengl (though I will do a bit of color as well). Is there an efficient way of getting the ...
1
vote
2answers
828 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
1answer
803 views
Reading YUV images in C
How to read any yuv image?
How can the dimensions of an YUV image be passed for reading to a buffer?
1
vote
2answers
1k views
How to read a YUV420SP file format image?
Hey, I am using an application for obtaining the raw data from the image sensor on an Android device. The files I am getting out are in the YUV420SP format,and XnView does not supprt it. Does anyone ...
1
vote
1answer
357 views
How to decode this YUV colorspace string and save it as an image
So I am using one third party library which is not very well documented. It has a method which takes a picture with camera and this is what it returns:
...
1
vote
2answers
1k views
how to convert avi file to yuv 420 (software/matlab/source code/c/c++ anything)
Guys I want to convert an avi file into yuv 420 video clip. Is there any method to do that? thx!
1
vote
2answers
2k views
How to extract frames from yuv 420 video clip and store them as different images, using matlab?
How do I extract the frames from a yuv 420 video? Let's say i want to store them as still images. How?
1
vote
2answers
610 views
How to rotate yuv420 data?
I need to know how to rotate an image, which is in yuv420p format by 90 degrees. The option of converting this to rgb, rotating and again reconverting to yuv is not feasible. Even an algorithm would ...
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
268 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
2answers
817 views
Fast rgb565 to YUV (or even rgb565 to Y)
I'm working on a thing where I want to have the output option to go to a video overlay. Some support rgb565, If so sweet, just copy the data across.
If not I have to copy data across with a ...
1
vote
3answers
1k views
Convert yuv sequence to bmp images
I have yuv sequences and I want to convert it to bmp images.And I want to save it to folder on my computer.
I used yuv2bmp m file in ...