Reputation:
I am writing a medical application, where i have packets coming in IP interface. Which has following definition for pixel skeleton decoding. I can decide what i pick in the main frame to have different pixel algorithm. But i do not understand the logic properly.
What does this 3 formats mean? Which one would you use?
8 bit YUV (4:2:2)
10 bit YUV (4:2:2)
10 bit RGB (4:4:4)
Upvotes: 3
Views: 4326
Reputation: 213508
It exists to manage the bandwidth used by color images. Since the typical human eye is more sensitive to luminosity than color, the two color channels (U and V) can be given reduced bandwidth compared to the luminosity channel (Y) while maintaining a certain level of overall quality.
I cannot answer which format is best for your application unless I know more about your application.
Upvotes: 3