YUV420 to BGR image from pixel pointers

后端 未结 2 658
挽巷
挽巷 2021-01-14 03:03

I am capturing raw output from a decoder which is YUV420. I have got three pointers: Y(1920*1080), U(960*540) and V(960*540) separately.

I want to save the image a

相关标签:
2条回答
  • 2021-01-14 03:53

    Following is the process to convert the provided YUV files into RGB image.

    • Read Y, U and V binary files into byte buffers
    • Create OpenCV Mat object from the created buffers.
    • Resize U and V Mats to the size of Y.
    • Merge Y and resized U and V.
    • Convert from YUV to BGR

    Be advised that the resizing step is just an optimized way of repeating the values of U and V. This is only valid in the case where Y has twice the resolution of U and V in both dimensions. This approach should be invalid for arbitrary size images (not tested).

    Here is the code for the above-mentioned process.

    #include <iostream>
    #include <vector>
    #include <opencv2/opencv.hpp>
    
    std::vector<unsigned char> readBytesFromFile(const char* filename)
    {
        std::vector<unsigned char> result;
    
        FILE* f = fopen(filename, "rb");
    
        fseek(f, 0, SEEK_END);  // Jump to the end of the file
        long length = ftell(f); // Get the current byte offset in the file
        rewind(f);              // Jump back to the beginning of the file
    
        result.resize(length);
    
        char* ptr = reinterpret_cast<char*>(&(result[0]));
        fread(ptr, length, 1, f); // Read in the entire file
        fclose(f); // Close the file
    
        return result;
    }
    
    int main(int argc, char** argv)
    {
        cv::Size actual_size(1920, 1080);
        cv::Size half_size(960, 540);
    
        //Read y, u and v in bytes arrays
        auto y_buffer = readBytesFromFile("ypixel.bin");
        auto u_buffer = readBytesFromFile("upixel.bin");
        auto v_buffer = readBytesFromFile("vpixel.bin");
    
    
        cv::Mat y(actual_size, CV_8UC1, y_buffer.data());
        cv::Mat u(half_size, CV_8UC1, u_buffer.data());
        cv::Mat v(half_size, CV_8UC1, v_buffer.data());
    
        cv::Mat u_resized, v_resized;
        cv::resize(u, u_resized, actual_size, 0, 0, cv::INTER_NEAREST); //repeat u values 4 times
        cv::resize(v, v_resized, actual_size, 0, 0, cv::INTER_NEAREST); //repeat v values 4 times
    
        cv::Mat yuv;
    
        std::vector<cv::Mat> yuv_channels = { y, u_resized, v_resized };
        cv::merge(yuv_channels, yuv);
    
        cv::Mat bgr;
        cv::cvtColor(yuv, bgr, cv::COLOR_YUV2BGR);
        cv::imwrite("bgr.jpg", bgr);
    
        return 0;
    }
    

    Compiled and tested with following command:

    g++ -o yuv2rgb -std=c++11 yuv2rgb.cpp -L/usr/local/lib -lopencv_core -lopencv_imgcodecs -lopencv_highgui -lopencv_imgproc

    Following output image is generated by executing the above code:

    0 讨论(0)
  • 2021-01-14 03:54

    I think OpenCV matrix for your input yuv420 planar image should have 1 channel format instead of 3 channel. Place there Y channel, then U, then V. I found a very similar question HERE Planar YUV420 and NV12 is the same

    0 讨论(0)
提交回复
热议问题