cpp rgb to yuv422 conversion
问题 I'm trying to convert an image (originally from QImage) in a RGB/RGBA format (can be changed) to a YUV422 format. My initial intention was to use OpenCV cvtColor to do the work but it does not enable the conversion of RGB/RGBA to 422 format. I searched for alternatives and even considered to write my own conversion according to this but it would not work fast enough. I searched for another library to use and found this post but it is relay old and not so relevant. So my question is what good