Questions tagged [ycbcr]

19 questions
0
votes
1 answer

RGB to YUV 420P image conversion in Go

I am wondering, how can I perform conversion from RGB to YUV 420P image in Go (more precisely *image.RGBA to *image.YcbCr). I havn't found any standard method in image package for that. As I also didn't find any library for that, my only idea was to…
MikolajMGT
  • 113
  • 2
  • 10
0
votes
0 answers

How can I use multiple immutable samplers in vulkan?

I want to use multiple immutable samplers within one render command in vulkan, but I don't know how to select them within the fragment shader. To understand what I want and what I mean I start first with explaining the working version. I wrote a…
lexos
  • 21
  • 1
  • 3
0
votes
1 answer

YCbCr Video Input STM32F746

I am working on STM32F746 based custom board which is integrated with LCD and a ADV7180 video decoder IC. I Configured the ADV7180 to run in the free run mode. Getting the Camera data using DCMI to a specified buffer. I am trying to Convert the…
Narayana Rao Routhu
  • 6,303
  • 27
  • 42
-1
votes
2 answers

Converting RGBA binary image into YCbCr but the result is not as expected

I have a RGBA image in binary format(.raw) and I am trying to convert the image into YCbCr using C++. However the converted image when viewed using ffplay give me a green image. What could I be doing wrong? I have a code to reproduce the problem I…
1
2