Top "Yuv" questions

YUV is a color space typically used as part of a color image pipeline.

Convert NV21 byte array into bitmap readable format

Hey I'm creating small camera app I have implemented every things but I have one problem which is converting NV21 …

android bitmap android-camera yuv
Planar YUV420 data layout

In my project I use OpenH264 codec, which is said to output data in the YUV 4:2:0 planar format. After decoding …

c++ image-processing h.264 codec yuv
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) …

opencv rgb yuv image-conversion subsampling
sws_scale YUV --> RGB distorted image

I want to convert YUV420P image (received from H.264 stream) to RGB, while also resizing it, using sws_scale. …

c++ ffmpeg yuv libavcodec
v4l2 video capture example

this is my first post here and I hope I can find some help I'm working on embedded linux on …

embedded-linux codec mpeg yuv v4l2
How to find out resolution and count of frames in YUV 4:2:0 file?

How to find out resolution and count of frames in YUV 4:2:0 file if i know how many pixel(luma samples) …

yuv
YUV_420_888 interpretation on Samsung Galaxy S7 (Camera2)

I wrote a conversion from YUV_420_888 to Bitmap, considering the following logic (as I understand it): To summarize the approach: …

android yuv android-camera2
Display YUV in OpenGL

I am having trouble displaying a raw YUV file that it is in NV12 format. I can display a selected …

objective-c opengl rgb yuv
convert format from yuvj420p to yuv420p

i'm trying to perform an algorithm to convert from yuvj420p to yuv420p. The difference between both formats are …

video yuv
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 …

ubuntu image-processing rgb yuv imagemagick-convert