1 | initial version |
Check your camera documentation if output is YUV or YUV422.
If source output is YUV422 it is supported by Opencv : (COLOR_YUV2RGB_UYVY or COLOR_YUV2RGB_Y422 )
(Also, Check your image depth if it's CV_8UC2 or CV_8UC3. )
If source is a non supported format you'll have to implement code for conversion.