I'm working on a project where I receive an image in the CV_8UC3 pixel format. According to the documentation, this would be described as 3 channel unsigned char with 8 bit depth.
My question is this: I need this image in a YUV pixel format in order for things further down the line to be happy. Can this be done using OpenCV? If not, can someone elaborate on the CV_8UC3 definition as I would need to be able to determine the FFmpeg equivalent pixel format or how to do this conversion.
tl;dr Need to go CV_8UC3 -> YUV, can't find a way to use OpenCV to do it