YUV is a color space typically used as part of a color image pipeline.
0
votes
2answers
25 views
How to convert RGB from YUV420p for ffmpeg encoder?
I want to make .avi video file from bitmap images by using c++ code.
I wrote the following code:
//Get RGB array data from bmp file
uint8_t* rgb24Data = new uint8_t[3*imgWidth*imgHeight];
hBitmap = ...
0
votes
1answer
16 views
How to judge whether a file is a nv12 format file?
I have a file, I want to know whether it is NV12 format, how to judge a file is a nv12 format file? Is there any tool or test code?
0
votes
1answer
29 views
YUY2 process image fault
I'm trying to process YUY2 image (Y, Cb, Cr). I need to filter the image and eliminate all the colors but the red coloring. I used Image Processing Lab to find the values of the elements Y, Cb, Cr. I ...
2
votes
1answer
36 views
Printing the pixel values of YUV image
When i convert a image to YUV from RGB I cant get a value of Y when I try printing the pixels. I get a value 377 and when I cast it with integer I get 255. WHich I presume is incorrect. Is there a ...
0
votes
1answer
25 views
Green component after setting Y,Cb and Cr to zero
I am setting Y, Cb and Cr to zero and converting it back to RGB using matlab. What i don't understand is that why am i getting Red and Blue component as zero in RGB color space while the green ...
2
votes
4answers
66 views
Pixels in YUV image
I am using opencv to achieve object tracking. I read that YUV image is better option to use than RGB image. My problem is that I fail to understand about the YUV format although i spend much time read ...
0
votes
1answer
77 views
OpenCV for Android: Convert Camera preview from YUV to RGB with Imgproc.cvtColor
I get a runtime error if I try to convert camera preview YUV byte array
to a RGB(A) byte array with Imgproc.cvtColor( mYUV_Mat, mRgba_Mat, Imgproc.COLOR_YUV420sp2RGBA, 4 )
in onPreviewFrame(byte[] ...
3
votes
0answers
117 views
Issue with decoding YUV Image on some Android devices
I was trying to create online scanner using android onPreviewFrame method. I've created AsyncTask to process image for me. This is the code of my converting method:
public Bitmap ...
0
votes
0answers
19 views
How to convert O3D Shander to D3D11 Shader(vs_4_0)
I'm work for a media player for window phone 8 app,need shader yuv data.
This is a Shader writing by O3D from chrome source code,how to convert it to D3D11 Shader(vs_4_0)。
/**
* Copyright 2009, ...
1
vote
1answer
60 views
Scaling YUV420P with libswscale - getting gray image out
I've got a basic understanding of the format of YUV420p data. I understand it's in planes and that the Y data is basically black & white luma and should be width*height pixels in length.
The U ...
1
vote
1answer
66 views
V4L2_PIX_FMT_YUYV: convert from YUYV to RGB24?
I'm capturing image data from a webcam using Video4Linux2. The pixel format returned by the device is V4L2_PIX_FMT_YUYV. According to http://linuxtv.org/downloads/v4l-dvb-apis/V4L2-PIX-FMT-YUYV.html ...
0
votes
0answers
82 views
I ues FFMPEG to convert bitmap to yuv,and try to save it,but failed
I use this way to convert bitmap to yuv
Save bitmap to video (libavcodec ffmpeg)
and then save the buffer like this:
FILE* fp=fopen("aha.yuv","w");
if(!fp) return NULL;
...
0
votes
0answers
74 views
SDL YUV Overlay Displays Black Screen
I am trying to show a video using SDL. In particular, I have a buffer filled with a bit of decoded ogg theora stream. I then create a SDL_Surface (the window), a SDL_Overlay (which I copy the contents ...
0
votes
1answer
312 views
Using FFMPEG to losslessly convert YUV to another format for editing in Adobe Premier
I have a raw YUV video file that I want to do some basic editing to in Adobe CS6 Premiere, but it won't recognize the file. I thought to use ffmpeg to convert it to something Premiere would take in, ...
0
votes
0answers
134 views
Convert yuv format image into rgb in C++
I have a camera video frame from android onPreviewCallBack. Android provides this frame in yuv format by default.I am using cocos2dx engine to show it on the screen. I want to add the sprite of this ...
1
vote
1answer
173 views
Out of Memory when using compresstojpeg on multiple YuvImage one at a time
I am building an app that buffers N camera frames and when the user taps a button it saves the photo using all the saved frames applying an effect.
I am saving the photo and processing the frames on ...
1
vote
0answers
93 views
opencv: Mat2.copyTo(Mat1(Rect)) is giving grayscale only for copied area
I am trying to overlay image over video frame in android(native part, .cpp).I get my video frames in yuv420sp format, i pass this char * (buffer) to opencv and there i create a MAT with it
Mat ...
0
votes
1answer
109 views
error in the output texture yuv422 in ios
here's a screenshot screen with the ipad
http://joxi.ru/7J9NUdg5CbCJWOM8-i0
sein http://joxi.ru/SspPUdg5CbBrLdFutis
error:
1) picture (http://joxi.ru/CYRRUdg5CbDiKIByZLo)
2) size, not full screen
...
1
vote
1answer
121 views
Writing YUV to file results in duplicated frames
I am writing YUV (YV12) frames to YUV file. I am saving exactly 101 frames.But when I am playing the output YUV file I have 2x more frames whereas each second frame is always empty.
Here is my code:
...
0
votes
0answers
197 views
Write YUV ( YV12 ) to YUV file
I need to convert RGB image to YUV YV12 frames and write it to YUV file.I found this code sample which converts RGB pixels to YUV frame.I have 2 problems with it.
1.I read image file using FreeImage ...
1
vote
1answer
148 views
Playing YUV video with SDL: Line wraps too late when resolution is not multiple of 4
I've been battling with an issue when playing certain sources of uncompressed YUV 4:2:0 planar video data with SDL_Overlay (SDL 1.2.5).
I have no problems playing, say, 640x480 video. But I have just ...
3
votes
1answer
291 views
How to convert an FFMPEG AVFrame in YUVJ420P to AVFoundation cVPixelBufferRef?
I have an FFMPEG AVFrame in YUVJ420P and I want to convert it to a CVPixelBufferRef with CVPixelBufferCreateWithBytes. The reason I want to do this is to use AVFoundation to show/encode the frames.
I ...
0
votes
0answers
242 views
Create yuv mat in opencv on android
I am implementing computer vision project for Android and I am using OpenCV with Android NDK for it. It receives data in YUV NV21 format from camera in byte array from PreviewCallback and calls native ...
1
vote
1answer
245 views
Encode rgb to yuv420p using libav
I'm trying to convert an vector of RGB image data (derived from a .png image) to YUV420p format using libav.
In the libav sample code the following is used to create a dummy image:
/* prepare a ...
0
votes
0answers
59 views
Render RGB24 data on device screen
I have an decoder which is in native code. In my android activity i first select a file to be decoded, and then when the decode button is pressed, it decodes input file frame by frame. The decoded ...
0
votes
1answer
200 views
Imaging library to display yuv data in C++ and Qt
I was wondering is there any C++ imaging libraries so that I can take a yuv file and display it, I will be able to pass the resolution of the file and Ycbcr info(usually at 4:2:2) I need this to turn ...
0
votes
0answers
99 views
Capturing screen in YUV format with BitBlt
I am currently using BitBlt function to capture the screen and then I encode it. Since my encoder uses YUV420 format for the input I need to convert the data from RGB to YUV before encoding. I was ...
0
votes
1answer
234 views
how to display yuv in android
In a camera preview function, I've been using yuv2rgb, and using the resulting bitmap.
This is slow, so I want to display the picture as it is.
I use example class
// public abstract class ...
1
vote
0answers
131 views
Direct3D YUV Formats?
How do the YUV texture formats in Direct3D 11 for Windows 8 work? The documentation is a bit sparse and I haven't found any examples.
When reading from such textures in a shader, will texture.rgb be ...
1
vote
1answer
312 views
How can I create a YUV422 frame from a JPEG or other image on Ubuntu
I want to create a sample YUV422 Frame on Ubuntu from any image so I can code a YUV422 to RGB888 function for the sake of learning. I'd really like to be able to use a trusted tool to create a sample ...
-1
votes
1answer
128 views
Prove that the equivalent number of bits per pixel for the YUV 4:2:0 scheme is 12
Prove that the equivalent number of bits per pixel for the YUV 4:2:0 scheme is 12
0
votes
1answer
972 views
Converting YUV420P to RGBA using OpenGL ES 2.0
I am working on processing video using OpenGL ES 2.0 on Android. The picture data is being pulled as YUV420P and I need to process them in RGBA in my OpenGL fragment shader somehow.
How do I convert ...
1
vote
1answer
321 views
NV21 to RGB conversion result in black&white
I'm converting a single pixel of NV21 to RGB, it is what I did:
public int getYUVvalue(byte[] yuv,int width,int height,int x,int y){
int total=width*height;
int ...
4
votes
1answer
328 views
Rotate an YUV byte array on Android
I'm looking to rotate a YUV frame preview recieved from a Preview Callblack, so far I've founded this post which cointains an algorithm to rotate the frame preview but is messing the preview image
...
1
vote
1answer
710 views
Android Camera Preview YUV format into RGB on the GPU
I have copy pasted some code I found on stackoverflow to convert the default camera preview YUV into RGB format and then uploaded it to OpenGL for processing.
That worked fine, the issue is that most ...
0
votes
1answer
85 views
LodePng 24bit RGB mode can't understand how to choose
I have an YUV 420 (144x176) file from which I read first frame and converted its YUV components to RGB array int rgb[HEIGHT*WIDTH*3]; in which I store R1G1B1...RnGnBn and have an ...
0
votes
3answers
649 views
Convert Yuv420 to rgb and show on qt pixmap
I want to convert a yuv picture into RGB to display on a QT pixmap. What I have right now is that I see a empty pixmap.
int convertYUVtoRGB(int y, int u, int v) {
int r,g,b;
r = y + ...
0
votes
1answer
158 views
decodeyuv420sp single pixel version
I'm trying to convert several pixels from a YUV (nv21) image format to RGB format(yes, just some pixels, not the whole image because the run time constrains)
Currently I'm using the decodeyuv420SP ...
0
votes
1answer
341 views
YUV TO RGB results to negative value
I'm developing an app using java which convert a YUV pixel(x,y) into a RGB pixel, here is what I did:(data is YUV byte array)
int Y = data[ y * width + x];
int U = data[ (int) (width * ...
2
votes
2answers
243 views
YUV to RGB conversion. RGB file structure?
I have a problem when converting YUV file to RGB file. When I am done I can't open .rgb file with GIMP or other viewers, but I succeed to open downloaded .rgb files. Please tell me what the structure ...
-4
votes
1answer
136 views
ios4.2 opengl can not work
I have get the h.264 data and decoder them to YUV buffers,and i have display the yup data by opengl on ios5 and ios6,but when I try to run it on my iPad(ios4.2.1),it can not display currently,just ...
0
votes
0answers
53 views
Application crashed when convert YUVBuffer to BGRABuffer
I've just built an application for video converter.
when converting YUVBuffer to BGRABuffer alway's my application is crashed only in this place.
STORE(y1, dst_ptr[dst_span]);
For this i user ...
0
votes
1answer
124 views
how to write yuv422 image data to bmp file?
I have image data in yuv422 format in EEPROM using at91sam9260 using image sensor interface (ISI).
i want to write it to SD-card in .bmp format?
Or i have to first convert yuv422 image to RGB and ...
6
votes
1answer
659 views
Can YUV -> RGB conversion be hardware accelerated?
We have an application that reads a GigE YUV video stream and displays it on the screen. By profiling, we have learned that the function converting each frame from YUV (UYVY) to RGB24 is taking at ...
0
votes
1answer
1k views
FFMpeg(Android) av_read_frame or avcodec_decode_video2 returning same colour
I've been experimenting FFMpeg for the past 2 weeks and I'm having a bit of trouble...
First I've been working with a Galaxy S3, which worked super fine, gave me the best pictures ever but I recently ...
0
votes
0answers
200 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 ...
0
votes
0answers
94 views
How can i create yuvimage 0r nv21 from file path?
Actually i got the image file path from onReceive function which is override from broadcast receiver. in that i want create yuvimage from this file path. since i get a jpeg file or its bytes but i ...
-3
votes
1answer
186 views
How to get the resolution of YUV frame
I have a .yuv file and want to read it using C++. The issue is that I don't know it's resolution. So, is there any means to derive the resolution from the yuv file ?
Also, I don't know the number of ...
3
votes
2answers
824 views
CVOpenGLESTextureCacheCreateTextureFromImage returns error 6683
I am currently attempting to draw an image in openGL using YUV420 format (bi-planar). I receive raw data, and am attempting to parse it into a CVPixelBuffer, and then pass said buffer using ...
1
vote
1answer
202 views
Direct Show YUY2 Pixel Output from videoInput
I'm using videoInput to interface with DirectShow and get pixel data from my webcam.
From another question I've asked, people have suggested that the pixel format is just appended arrays in the order ...