vote up 1 vote down star
3

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 shader). It works great under OpenGL, but under Direct3D I just can't get the output image to look right. I'm starting to suspect that Direct3D is somehow modifying the Y, U and V samples before I get a chance to do my YUV conversion thing. Does anyone know if Direct3D makes any modifications to the values stored in textures before the fragment shader is run and how to disable them>?

flag

Have you released this anywhere? I'm struggling with a) learning YUV-RGB conversion and b) learning Cg at the same time. I'd love to be able to look at what you've done. – mos Jun 17 at 19:39
Check out mdk.org.pl/2007/11/… – dicroce Jun 18 at 14:07

3 Answers

vote up 0 vote down check

We figured it out. :) Basically the problem was that while our YUV to RGB equations were correct, we weren't properly sampling the V data! So no amount of futzing with the equations would have helped!

In the end, I would recommend the following strategy for anyone attempting to do this:

1) Set R, G, and B to the value from Y. You should get a grayscale image (as Y contains just luminance). 2) Next, set R, G, and B to U. You should get funny colors! 3) Finally set R, G, and B to V. Again, you should get funny colors.

Also, properly normalizing the values is critical. Check our fourcc.org for a discussion of proper YUV normalization.

link|flag
vote up 0 vote down

I'll see if I can get screenshots to post tomorrow, until then I can say that the blues in the image are coming out as shades of green. It's actually pretty subtle. The texture formats are all 8 bit (I think L8)...

link|flag
vote up 1 vote down

The only suggestion that comes to mind is that the textures are in an inappropriate format (low-precision or compressed).

Can you describe in what way the output looks wrong? Any chance of a right vs wrong screenshot?

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.