Ask Your Question

tschnz's profile - activity

2015-03-02 00:38:53 -0600 asked a question YUV and YCrCb Colorspace values

Hey folks,

I'm currently working on a realtime application where I need to process the luminance channel. Source and destination are BGR frames, so I need 2 colorspace conversions in total. Since BGR-Lab and BGR-Luv conversion (and back) are about 40% slower than BGR-YCrCb and BGR-YUV, I need to use one of the latter ones.

Now here it gets confusing. The official documentation states, BGR-YCrCb uses JPEG conversion, using full range values. But using the minMaxLoc method gives me a range of [16-236] for the Y channel and some values around 128 for both chrominance channels. So the conversion seems to operate like the ITU-R BT.601 standard (Y'CrCb) would do. Rather confusing is the BGR-YUV conversion that, according to the source code, should operate like Y'CrCb says, but really gives me values around [11-243].

tl;dr: YCrCb-JPEG behaves like Y'CrCb, while YUV should behave like Y'CrCb but really does something else. (Tested with 32FC3 and 8UC3 type)

Hope you can clear some things up, because I'd like to use values in full range.