• 怎么运行/opencv/modules/imgproc/test下的test_cvtyuv.cpp


    怎么运行/opencv/modules/imgproc/test下的test_cvtyuv.cpp

    要运行test_cvtyuv.cpp,你需要按照以下步骤操作:

    1. 获取OpenCV源代码,编译并安装opencv:首先,确保你已经下载并安装了OpenCV。如果没有,请前往OpenCV官方网站下载源代码。安装参考连接:https://blog.csdn.net/shizuguilai/article/details/136406722

    2. 运行测试:在构建build目录中,你可以运行测试程序。使用以下命令:

      ./bin/opencv_test_imgproc --gtest_filter=cvtyuv.*
      # 或者是下面这样?
      ./bin/opencv_test_imgproc --gtest_filter=*ColorYUV* # 运行特定的颜色转换测试
      # 或者试试下面这个?注意!下面是gtestp不是gtest
      ./bin/opencv_test_imgproc --gtestp_filter=Imgproc_ColorYUV.accuracy
      
      • 1
      • 2
      • 3
      • 4
      • 5

      这将运行与cvtyuv相关的所有测试用例。因为test_cvtyuv.cpp本身并不包含主函数(main),因为它是设计来被 OpenCV 的测试框架自动发现和执行的。测试框架(基于 Google Test)会自动识别 TEST_P 宏定义的测试用例并执行它们。

    请注意,确保你的构建环境已经正确设置,以便能够编译和运行OpenCV。如果你遇到问题,可以查看OpenCV官方文档或在社区寻求帮助。

    祝你好运!🚀

    test_cvtyuv.cpp源码如下:

    #include "test_precomp.hpp"
    
    namespace opencv_test { namespace {
    
    #undef RGB
    #undef YUV
    
    typedef Vec3b YUV;
    typedef Vec3b RGB;
    
    int countOfDifferencies(const Mat& gold, const Mat& result, int maxAllowedDifference = 1)
    {
        Mat diff;
        absdiff(gold, result, diff);
        return countNonZero(diff.reshape(1) > maxAllowedDifference);
    }
    
    class YUVreader
    {
    public:
        virtual ~YUVreader() {}
        virtual YUV read(const Mat& yuv, int row, int col) = 0;
        virtual int channels() = 0;
        virtual Size size(Size imgSize) = 0;
    
        virtual bool requiresEvenHeight() { return true; }
        virtual bool requiresEvenWidth() { return true; }
    
        static YUVreader* getReader(int code);
    };
    
    class RGBreader
    {
    public:
        virtual ~RGBreader() {}
        virtual RGB read(const Mat& rgb, int row, int col) = 0;
        virtual int channels() = 0;
    
        static RGBreader* getReader(int code);
    };
    
    class RGBwriter
    {
    public:
        virtual ~RGBwriter() {}
    
        virtual void write(Mat& rgb, int row, int col, const RGB& val) = 0;
        virtual int channels() = 0;
    
        static RGBwriter* getWriter(int code);
    };
    
    class GRAYwriter
    {
    public:
        virtual ~GRAYwriter() {}
    
        virtual void write(Mat& gray, int row, int col, const uchar& val)
        {
            gray.at<uchar>(row, col) = val;
        }
    
        virtual int channels() { return 1; }
    
        static GRAYwriter* getWriter(int code);
    };
    
    class YUVwriter
    {
    public:
        virtual ~YUVwriter() {}
    
        virtual void write(Mat& yuv, int row, int col, const YUV& val) = 0;
        virtual int channels() = 0;
        virtual Size size(Size imgSize) = 0;
    
        virtual bool requiresEvenHeight() { return true; }
        virtual bool requiresEvenWidth() { return true; }
    
        static YUVwriter* getWriter(int code);
    };
    
    class RGB888Writer : public RGBwriter
    {
        void write(Mat& rgb, int row, int col, const RGB& val)
        {
            rgb.at<Vec3b>(row, col) = val;
        }
    
        int channels() { return 3; }
    };
    
    class BGR888Writer : public RGBwriter
    {
        void write(Mat& rgb, int row, int col, const RGB& val)
        {
            Vec3b tmp(val[2], val[1], val[0]);
            rgb.at<Vec3b>(row, col) = tmp;
        }
    
        int channels() { return 3; }
    };
    
    class RGBA8888Writer : public RGBwriter
    {
        void write(Mat& rgb, int row, int col, const RGB& val)
        {
            Vec4b tmp(val[0], val[1], val[2], 255);
            rgb.at<Vec4b>(row, col) = tmp;
        }
    
        int channels() { return 4; }
    };
    
    class BGRA8888Writer : public RGBwriter
    {
        void write(Mat& rgb, int row, int col, const RGB& val)
        {
            Vec4b tmp(val[2], val[1], val[0], 255);
            rgb.at<Vec4b>(row, col) = tmp;
        }
    
        int channels() { return 4; }
    };
    
    class YUV420pWriter: public YUVwriter
    {
        int channels() { return 1; }
        Size size(Size imgSize) { return Size(imgSize.width, imgSize.height + imgSize.height/2); }
    };
    
    class YV12Writer: public YUV420pWriter
    {
        void write(Mat& yuv, int row, int col, const YUV& val)
        {
            int h = yuv.rows * 2 / 3;
    
            yuv.ptr<uchar>(row)[col] = val[0];
            if( row % 2 == 0 && col % 2 == 0 )
            {
                yuv.ptr<uchar>(h + row/4)[col/2 + ((row/2) % 2) * (yuv.cols/2)] = val[2];
                yuv.ptr<uchar>(h + (row/2 + h/2)/2)[col/2 + ((row/2 + h/2) % 2) * (yuv.cols/2)] = val[1];
            }
        }
    };
    
    class I420Writer: public YUV420pWriter
    {
        void write(Mat& yuv, int row, int col, const YUV& val)
        {
            int h = yuv.rows * 2 / 3;
    
            yuv.ptr<uchar>(row)[col] = val[0];
            if( row % 2 == 0 && col % 2 == 0 )
            {
                yuv.ptr<uchar>(h + row/4)[col/2 + ((row/2) % 2) * (yuv.cols/2)] = val[1];
                yuv.ptr<uchar>(h + (row/2 + h/2)/2)[col/2 + ((row/2 + h/2) % 2) * (yuv.cols/2)] = val[2];
            }
        }
    };
    
    class YUV420Reader: public YUVreader
    {
        int channels() { return 1; }
        Size size(Size imgSize) { return Size(imgSize.width, imgSize.height * 3 / 2); }
    };
    
    class YUV422Reader: public YUVreader
    {
        int channels() { return 2; }
        Size size(Size imgSize) { return imgSize; }
        bool requiresEvenHeight() { return false; }
    };
    
    class NV21Reader: public YUV420Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            uchar y = yuv.ptr<uchar>(row)[col];
            uchar u = yuv.ptr<uchar>(yuv.rows * 2 / 3 + row/2)[(col/2)*2 + 1];
            uchar v = yuv.ptr<uchar>(yuv.rows * 2 / 3 + row/2)[(col/2)*2];
    
            return YUV(y, u, v);
        }
    };
    
    
    struct NV12Reader: public YUV420Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            uchar y = yuv.ptr<uchar>(row)[col];
            uchar u = yuv.ptr<uchar>(yuv.rows * 2 / 3 + row/2)[(col/2)*2];
            uchar v = yuv.ptr<uchar>(yuv.rows * 2 / 3 + row/2)[(col/2)*2 + 1];
    
            return YUV(y, u, v);
        }
    };
    
    class YV12Reader: public YUV420Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            int h = yuv.rows * 2 / 3;
            uchar y = yuv.ptr<uchar>(row)[col];
            uchar u = yuv.ptr<uchar>(h + (row/2 + h/2)/2)[col/2 + ((row/2 + h/2) % 2) * (yuv.cols/2)];
            uchar v = yuv.ptr<uchar>(h + row/4)[col/2 + ((row/2) % 2) * (yuv.cols/2)];
    
            return YUV(y, u, v);
        }
    };
    
    class IYUVReader: public YUV420Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            int h = yuv.rows * 2 / 3;
            uchar y = yuv.ptr<uchar>(row)[col];
            uchar u = yuv.ptr<uchar>(h + row/4)[col/2 + ((row/2) % 2) * (yuv.cols/2)];
            uchar v = yuv.ptr<uchar>(h + (row/2 + h/2)/2)[col/2 + ((row/2 + h/2) % 2) * (yuv.cols/2)];
    
            return YUV(y, u, v);
        }
    };
    
    class UYVYReader: public YUV422Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            uchar y = yuv.ptr<Vec2b>(row)[col][1];
            uchar u = yuv.ptr<Vec2b>(row)[(col/2)*2][0];
            uchar v = yuv.ptr<Vec2b>(row)[(col/2)*2 + 1][0];
    
            return YUV(y, u, v);
        }
    };
    
    class YUY2Reader: public YUV422Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            uchar y = yuv.ptr<Vec2b>(row)[col][0];
            uchar u = yuv.ptr<Vec2b>(row)[(col/2)*2][1];
            uchar v = yuv.ptr<Vec2b>(row)[(col/2)*2 + 1][1];
    
            return YUV(y, u, v);
        }
    };
    
    class YVYUReader: public YUV422Reader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            uchar y = yuv.ptr<Vec2b>(row)[col][0];
            uchar u = yuv.ptr<Vec2b>(row)[(col/2)*2 + 1][1];
            uchar v = yuv.ptr<Vec2b>(row)[(col/2)*2][1];
    
            return YUV(y, u, v);
        }
    };
    
    class YUV888Reader : public YUVreader
    {
        YUV read(const Mat& yuv, int row, int col)
        {
            return yuv.at<YUV>(row, col);
        }
    
        int channels() { return 3; }
        Size size(Size imgSize) { return imgSize; }
        bool requiresEvenHeight() { return false; }
        bool requiresEvenWidth() { return false; }
    };
    
    class RGB888Reader : public RGBreader
    {
        RGB read(const Mat& rgb, int row, int col)
        {
            return rgb.at<RGB>(row, col);
        }
    
        int channels() { return 3; }
    };
    
    class BGR888Reader : public RGBreader
    {
        RGB read(const Mat& rgb, int row, int col)
        {
            RGB tmp = rgb.at<RGB>(row, col);
            return RGB(tmp[2], tmp[1], tmp[0]);
        }
    
        int channels() { return 3; }
    };
    
    class RGBA8888Reader : public RGBreader
    {
        RGB read(const Mat& rgb, int row, int col)
        {
            Vec4b rgba = rgb.at<Vec4b>(row, col);
            return RGB(rgba[0], rgba[1], rgba[2]);
        }
    
        int channels() { return 4; }
    };
    
    class BGRA8888Reader : public RGBreader
    {
        RGB read(const Mat& rgb, int row, int col)
        {
            Vec4b rgba = rgb.at<Vec4b>(row, col);
            return RGB(rgba[2], rgba[1], rgba[0]);
        }
    
        int channels() { return 4; }
    };
    
    class YUV2RGB_Converter
    {
    public:
        RGB convert(YUV yuv)
        {
            int y = std::max(0, yuv[0] - 16);
            int u = yuv[1] - 128;
            int v = yuv[2] - 128;
            uchar r = saturate_cast<uchar>(1.164f * y + 1.596f * v);
            uchar g = saturate_cast<uchar>(1.164f * y - 0.813f * v - 0.391f * u);
            uchar b = saturate_cast<uchar>(1.164f * y + 2.018f * u);
    
            return RGB(r, g, b);
        }
    };
    
    class YUV2GRAY_Converter
    {
    public:
        uchar convert(YUV yuv)
        {
            return yuv[0];
        }
    };
    
    class RGB2YUV_Converter
    {
    public:
        YUV convert(RGB rgb)
        {
            int r = rgb[0];
            int g = rgb[1];
            int b = rgb[2];
    
            uchar y = saturate_cast<uchar>((int)( 0.257f*r + 0.504f*g + 0.098f*b + 0.5f) + 16);
            uchar u = saturate_cast<uchar>((int)(-0.148f*r - 0.291f*g + 0.439f*b + 0.5f) + 128);
            uchar v = saturate_cast<uchar>((int)( 0.439f*r - 0.368f*g - 0.071f*b + 0.5f) + 128);
    
            return YUV(y, u, v);
        }
    };
    
    YUVreader* YUVreader::getReader(int code)
    {
        switch(code)
        {
        case COLOR_YUV2RGB_NV12:
        case COLOR_YUV2BGR_NV12:
        case COLOR_YUV2RGBA_NV12:
        case COLOR_YUV2BGRA_NV12:
            return new NV12Reader();
        case COLOR_YUV2RGB_NV21:
        case COLOR_YUV2BGR_NV21:
        case COLOR_YUV2RGBA_NV21:
        case COLOR_YUV2BGRA_NV21:
            return new NV21Reader();
        case COLOR_YUV2RGB_YV12:
        case COLOR_YUV2BGR_YV12:
        case COLOR_YUV2RGBA_YV12:
        case COLOR_YUV2BGRA_YV12:
            return new YV12Reader();
        case COLOR_YUV2RGB_IYUV:
        case COLOR_YUV2BGR_IYUV:
        case COLOR_YUV2RGBA_IYUV:
        case COLOR_YUV2BGRA_IYUV:
            return new IYUVReader();
        case COLOR_YUV2RGB_UYVY:
        case COLOR_YUV2BGR_UYVY:
        case COLOR_YUV2RGBA_UYVY:
        case COLOR_YUV2BGRA_UYVY:
            return new UYVYReader();
        //case COLOR_YUV2RGB_VYUY = 109,
        //case COLOR_YUV2BGR_VYUY = 110,
        //case COLOR_YUV2RGBA_VYUY = 113,
        //case COLOR_YUV2BGRA_VYUY = 114,
        //    return ??
        case COLOR_YUV2RGB_YUY2:
        case COLOR_YUV2BGR_YUY2:
        case COLOR_YUV2RGBA_YUY2:
        case COLOR_YUV2BGRA_YUY2:
            return new YUY2Reader();
        case COLOR_YUV2RGB_YVYU:
        case COLOR_YUV2BGR_YVYU:
        case COLOR_YUV2RGBA_YVYU:
        case COLOR_YUV2BGRA_YVYU:
            return new YVYUReader();
        case COLOR_YUV2GRAY_420:
            return new NV21Reader();
        case COLOR_YUV2GRAY_UYVY:
            return new UYVYReader();
        case COLOR_YUV2GRAY_YUY2:
            return new YUY2Reader();
        case COLOR_YUV2BGR:
        case COLOR_YUV2RGB:
            return new YUV888Reader();
        default:
            return 0;
        }
    }
    
    RGBreader* RGBreader::getReader(int code)
    {
        switch(code)
        {
        case COLOR_RGB2YUV_YV12:
        case COLOR_RGB2YUV_I420:
            return new RGB888Reader();
        case COLOR_BGR2YUV_YV12:
        case COLOR_BGR2YUV_I420:
            return new BGR888Reader();
        case COLOR_RGBA2YUV_I420:
        case COLOR_RGBA2YUV_YV12:
            return new RGBA8888Reader();
        case COLOR_BGRA2YUV_YV12:
        case COLOR_BGRA2YUV_I420:
            return new BGRA8888Reader();
        default:
            return 0;
        };
    }
    
    RGBwriter* RGBwriter::getWriter(int code)
    {
        switch(code)
        {
        case COLOR_YUV2RGB_NV12:
        case COLOR_YUV2RGB_NV21:
        case COLOR_YUV2RGB_YV12:
        case COLOR_YUV2RGB_IYUV:
        case COLOR_YUV2RGB_UYVY:
        //case COLOR_YUV2RGB_VYUY:
        case COLOR_YUV2RGB_YUY2:
        case COLOR_YUV2RGB_YVYU:
        case COLOR_YUV2RGB:
            return new RGB888Writer();
        case COLOR_YUV2BGR_NV12:
        case COLOR_YUV2BGR_NV21:
        case COLOR_YUV2BGR_YV12:
        case COLOR_YUV2BGR_IYUV:
        case COLOR_YUV2BGR_UYVY:
        //case COLOR_YUV2BGR_VYUY:
        case COLOR_YUV2BGR_YUY2:
        case COLOR_YUV2BGR_YVYU:
        case COLOR_YUV2BGR:
            return new BGR888Writer();
        case COLOR_YUV2RGBA_NV12:
        case COLOR_YUV2RGBA_NV21:
        case COLOR_YUV2RGBA_YV12:
        case COLOR_YUV2RGBA_IYUV:
        case COLOR_YUV2RGBA_UYVY:
        //case COLOR_YUV2RGBA_VYUY:
        case COLOR_YUV2RGBA_YUY2:
        case COLOR_YUV2RGBA_YVYU:
            return new RGBA8888Writer();
        case COLOR_YUV2BGRA_NV12:
        case COLOR_YUV2BGRA_NV21:
        case COLOR_YUV2BGRA_YV12:
        case COLOR_YUV2BGRA_IYUV:
        case COLOR_YUV2BGRA_UYVY:
        //case COLOR_YUV2BGRA_VYUY:
        case COLOR_YUV2BGRA_YUY2:
        case COLOR_YUV2BGRA_YVYU:
            return new BGRA8888Writer();
        default:
            return 0;
        };
    }
    
    GRAYwriter* GRAYwriter::getWriter(int code)
    {
        switch(code)
        {
        case COLOR_YUV2GRAY_420:
        case COLOR_YUV2GRAY_UYVY:
        case COLOR_YUV2GRAY_YUY2:
            return new GRAYwriter();
        default:
            return 0;
        }
    }
    
    YUVwriter* YUVwriter::getWriter(int code)
    {
        switch(code)
        {
        case COLOR_RGB2YUV_YV12:
        case COLOR_BGR2YUV_YV12:
        case COLOR_RGBA2YUV_YV12:
        case COLOR_BGRA2YUV_YV12:
            return new YV12Writer();
        case COLOR_RGB2YUV_I420:
        case COLOR_BGR2YUV_I420:
        case COLOR_RGBA2YUV_I420:
        case COLOR_BGRA2YUV_I420:
            return new I420Writer();
        default:
            return 0;
        };
    }
    
    template<class convertor>
    void referenceYUV2RGB(const Mat& yuv, Mat& rgb, YUVreader* yuvReader, RGBwriter* rgbWriter)
    {
        convertor cvt;
    
        for(int row = 0; row < rgb.rows; ++row)
            for(int col = 0; col < rgb.cols; ++col)
                rgbWriter->write(rgb, row, col, cvt.convert(yuvReader->read(yuv, row, col)));
    }
    
    template<class convertor>
    void referenceYUV2GRAY(const Mat& yuv, Mat& rgb, YUVreader* yuvReader, GRAYwriter* grayWriter)
    {
        convertor cvt;
    
        for(int row = 0; row < rgb.rows; ++row)
            for(int col = 0; col < rgb.cols; ++col)
                grayWriter->write(rgb, row, col, cvt.convert(yuvReader->read(yuv, row, col)));
    }
    
    template<class convertor>
    void referenceRGB2YUV(const Mat& rgb, Mat& yuv, RGBreader* rgbReader, YUVwriter* yuvWriter)
    {
        convertor cvt;
    
        for(int row = 0; row < rgb.rows; ++row)
            for(int col = 0; col < rgb.cols; ++col)
                yuvWriter->write(yuv, row, col, cvt.convert(rgbReader->read(rgb, row, col)));
    }
    
    struct ConversionYUV
    {
        explicit ConversionYUV( const int code )
        {
            yuvReader_  = YUVreader :: getReader(code);
            yuvWriter_  = YUVwriter :: getWriter(code);
            rgbReader_  = RGBreader :: getReader(code);
            rgbWriter_  = RGBwriter :: getWriter(code);
            grayWriter_ = GRAYwriter:: getWriter(code);
        }
    
        ~ConversionYUV()
        {
            if (yuvReader_)
                delete yuvReader_;
    
            if (yuvWriter_)
                delete yuvWriter_;
    
            if (rgbReader_)
                delete rgbReader_;
    
            if (rgbWriter_)
                delete rgbWriter_;
    
            if (grayWriter_)
                delete grayWriter_;
        }
    
        int getDcn()
        {
            return (rgbWriter_ != 0) ? rgbWriter_->channels() : ((grayWriter_ != 0) ? grayWriter_->channels() : yuvWriter_->channels());
        }
    
        int getScn()
        {
            return (yuvReader_ != 0) ? yuvReader_->channels() : rgbReader_->channels();
        }
    
        Size getSrcSize( const Size& imgSize )
        {
            return (yuvReader_ != 0) ? yuvReader_->size(imgSize) : imgSize;
        }
    
        Size getDstSize( const Size& imgSize )
        {
            return (yuvWriter_ != 0) ? yuvWriter_->size(imgSize) : imgSize;
        }
    
        bool requiresEvenHeight()
        {
            return (yuvReader_ != 0) ? yuvReader_->requiresEvenHeight() : ((yuvWriter_ != 0) ? yuvWriter_->requiresEvenHeight() : false);
        }
    
        bool requiresEvenWidth()
        {
            return (yuvReader_ != 0) ? yuvReader_->requiresEvenWidth() : ((yuvWriter_ != 0) ? yuvWriter_->requiresEvenWidth() : false);
        }
    
        YUVreader*  yuvReader_;
        YUVwriter*  yuvWriter_;
        RGBreader*  rgbReader_;
        RGBwriter*  rgbWriter_;
        GRAYwriter* grayWriter_;
    };
    
    CV_ENUM(YUVCVTS, COLOR_YUV2RGB_NV12, COLOR_YUV2BGR_NV12, COLOR_YUV2RGB_NV21, COLOR_YUV2BGR_NV21,
                     COLOR_YUV2RGBA_NV12, COLOR_YUV2BGRA_NV12, COLOR_YUV2RGBA_NV21, COLOR_YUV2BGRA_NV21,
                     COLOR_YUV2RGB_YV12, COLOR_YUV2BGR_YV12, COLOR_YUV2RGB_IYUV, COLOR_YUV2BGR_IYUV,
                     COLOR_YUV2RGBA_YV12, COLOR_YUV2BGRA_YV12, COLOR_YUV2RGBA_IYUV, COLOR_YUV2BGRA_IYUV,
                     COLOR_YUV2RGB_UYVY, COLOR_YUV2BGR_UYVY, COLOR_YUV2RGBA_UYVY, COLOR_YUV2BGRA_UYVY,
                     COLOR_YUV2RGB_YUY2, COLOR_YUV2BGR_YUY2, COLOR_YUV2RGB_YVYU, COLOR_YUV2BGR_YVYU,
                     COLOR_YUV2RGBA_YUY2, COLOR_YUV2BGRA_YUY2, COLOR_YUV2RGBA_YVYU, COLOR_YUV2BGRA_YVYU,
                     COLOR_YUV2GRAY_420, COLOR_YUV2GRAY_UYVY, COLOR_YUV2GRAY_YUY2,
                     COLOR_YUV2BGR, COLOR_YUV2RGB, COLOR_RGB2YUV_YV12, COLOR_BGR2YUV_YV12, COLOR_RGBA2YUV_YV12,
                     COLOR_BGRA2YUV_YV12, COLOR_RGB2YUV_I420, COLOR_BGR2YUV_I420, COLOR_RGBA2YUV_I420, COLOR_BGRA2YUV_I420)
    
    typedef ::testing::TestWithParam<YUVCVTS> Imgproc_ColorYUV;
    
    TEST_P(Imgproc_ColorYUV, accuracy)
    {
        int code = GetParam();
        RNG& random = theRNG();
    
        ConversionYUV cvt(code);
    
        const int scn = cvt.getScn();
        const int dcn = cvt.getDcn();
        for(int iter = 0; iter < 30; ++iter)
        {
            Size sz(random.uniform(1, 641), random.uniform(1, 481));
    
            if(cvt.requiresEvenWidth())  sz.width  += sz.width % 2;
            if(cvt.requiresEvenHeight()) sz.height += sz.height % 2;
    
            Size srcSize = cvt.getSrcSize(sz);
            Mat src = Mat(srcSize.height, srcSize.width * scn, CV_8UC1).reshape(scn);
    
            Size dstSize = cvt.getDstSize(sz);
            Mat dst = Mat(dstSize.height, dstSize.width * dcn, CV_8UC1).reshape(dcn);
            Mat gold(dstSize, CV_8UC(dcn));
    
            random.fill(src, RNG::UNIFORM, 0, 256);
    
            if(cvt.rgbWriter_)
                referenceYUV2RGB<YUV2RGB_Converter>  (src, gold, cvt.yuvReader_, cvt.rgbWriter_);
            else if(cvt.grayWriter_)
                referenceYUV2GRAY<YUV2GRAY_Converter>(src, gold, cvt.yuvReader_, cvt.grayWriter_);
            else if(cvt.yuvWriter_)
                referenceRGB2YUV<RGB2YUV_Converter>  (src, gold, cvt.rgbReader_, cvt.yuvWriter_);
    
            cv::cvtColor(src, dst, code, -1);
    
            EXPECT_EQ(0, countOfDifferencies(gold, dst));
        }
    }
    
    TEST_P(Imgproc_ColorYUV, roi_accuracy)
    {
        int code = GetParam();
        RNG& random = theRNG();
    
        ConversionYUV cvt(code);
    
        const int scn = cvt.getScn();
        const int dcn = cvt.getDcn();
        for(int iter = 0; iter < 30; ++iter)
        {
            Size sz(random.uniform(1, 641), random.uniform(1, 481));
    
            if(cvt.requiresEvenWidth())  sz.width  += sz.width % 2;
            if(cvt.requiresEvenHeight()) sz.height += sz.height % 2;
    
            int roi_offset_top = random.uniform(0, 6);
            int roi_offset_bottom = random.uniform(0, 6);
            int roi_offset_left = random.uniform(0, 6);
            int roi_offset_right = random.uniform(0, 6);
    
            Size srcSize = cvt.getSrcSize(sz);
            Mat src_full(srcSize.height + roi_offset_top + roi_offset_bottom, srcSize.width + roi_offset_left + roi_offset_right, CV_8UC(scn));
    
            Size dstSize = cvt.getDstSize(sz);
            Mat dst_full(dstSize.height  + roi_offset_left + roi_offset_right, dstSize.width + roi_offset_top + roi_offset_bottom, CV_8UC(dcn), Scalar::all(0));
            Mat gold_full(dst_full.size(), CV_8UC(dcn), Scalar::all(0));
    
            random.fill(src_full, RNG::UNIFORM, 0, 256);
    
            Mat src = src_full(Range(roi_offset_top, roi_offset_top + srcSize.height), Range(roi_offset_left, roi_offset_left + srcSize.width));
            Mat dst = dst_full(Range(roi_offset_left, roi_offset_left + dstSize.height), Range(roi_offset_top, roi_offset_top + dstSize.width));
            Mat gold = gold_full(Range(roi_offset_left, roi_offset_left + dstSize.height), Range(roi_offset_top, roi_offset_top + dstSize.width));
    
            if(cvt.rgbWriter_)
                referenceYUV2RGB<YUV2RGB_Converter>  (src, gold, cvt.yuvReader_, cvt.rgbWriter_);
            else if(cvt.grayWriter_)
                referenceYUV2GRAY<YUV2GRAY_Converter>(src, gold, cvt.yuvReader_, cvt.grayWriter_);
            else if(cvt.yuvWriter_)
                referenceRGB2YUV<RGB2YUV_Converter>  (src, gold, cvt.rgbReader_, cvt.yuvWriter_);
    
            cv::cvtColor(src, dst, code, -1);
    
            EXPECT_EQ(0, countOfDifferencies(gold_full, dst_full));
        }
    }
    
    INSTANTIATE_TEST_CASE_P(cvt420, Imgproc_ColorYUV,
        ::testing::Values((int)COLOR_YUV2RGB_NV12, (int)COLOR_YUV2BGR_NV12, (int)COLOR_YUV2RGB_NV21, (int)COLOR_YUV2BGR_NV21,
                          (int)COLOR_YUV2RGBA_NV12, (int)COLOR_YUV2BGRA_NV12, (int)COLOR_YUV2RGBA_NV21, (int)COLOR_YUV2BGRA_NV21,
                          (int)COLOR_YUV2RGB_YV12, (int)COLOR_YUV2BGR_YV12, (int)COLOR_YUV2RGB_IYUV, (int)COLOR_YUV2BGR_IYUV,
                          (int)COLOR_YUV2RGBA_YV12, (int)COLOR_YUV2BGRA_YV12, (int)COLOR_YUV2RGBA_IYUV, (int)COLOR_YUV2BGRA_IYUV,
                          (int)COLOR_YUV2GRAY_420, (int)COLOR_RGB2YUV_YV12, (int)COLOR_BGR2YUV_YV12, (int)COLOR_RGBA2YUV_YV12,
                          (int)COLOR_BGRA2YUV_YV12, (int)COLOR_RGB2YUV_I420, (int)COLOR_BGR2YUV_I420, (int)COLOR_RGBA2YUV_I420,
                          (int)COLOR_BGRA2YUV_I420));
    
    INSTANTIATE_TEST_CASE_P(cvt422, Imgproc_ColorYUV,
        ::testing::Values((int)COLOR_YUV2RGB_UYVY, (int)COLOR_YUV2BGR_UYVY, (int)COLOR_YUV2RGBA_UYVY, (int)COLOR_YUV2BGRA_UYVY,
                          (int)COLOR_YUV2RGB_YUY2, (int)COLOR_YUV2BGR_YUY2, (int)COLOR_YUV2RGB_YVYU, (int)COLOR_YUV2BGR_YVYU,
                          (int)COLOR_YUV2RGBA_YUY2, (int)COLOR_YUV2BGRA_YUY2, (int)COLOR_YUV2RGBA_YVYU, (int)COLOR_YUV2BGRA_YVYU,
                          (int)COLOR_YUV2GRAY_UYVY, (int)COLOR_YUV2GRAY_YUY2));
    
    }
    
    TEST(cvtColorUYVY, size_issue_21035)
    {
        Mat input = Mat::zeros(1, 1, CV_8UC2);
        Mat output;
        EXPECT_THROW(cv::cvtColor(input, output, cv::COLOR_YUV2BGR_UYVY), cv::Exception);
    }
    
    } // namespace
    
    
    • 1
    • 2
    • 3
    • 4
    • 5
    • 6
    • 7
    • 8
    • 9
    • 10
    • 11
    • 12
    • 13
    • 14
    • 15
    • 16
    • 17
    • 18
    • 19
    • 20
    • 21
    • 22
    • 23
    • 24
    • 25
    • 26
    • 27
    • 28
    • 29
    • 30
    • 31
    • 32
    • 33
    • 34
    • 35
    • 36
    • 37
    • 38
    • 39
    • 40
    • 41
    • 42
    • 43
    • 44
    • 45
    • 46
    • 47
    • 48
    • 49
    • 50
    • 51
    • 52
    • 53
    • 54
    • 55
    • 56
    • 57
    • 58
    • 59
    • 60
    • 61
    • 62
    • 63
    • 64
    • 65
    • 66
    • 67
    • 68
    • 69
    • 70
    • 71
    • 72
    • 73
    • 74
    • 75
    • 76
    • 77
    • 78
    • 79
    • 80
    • 81
    • 82
    • 83
    • 84
    • 85
    • 86
    • 87
    • 88
    • 89
    • 90
    • 91
    • 92
    • 93
    • 94
    • 95
    • 96
    • 97
    • 98
    • 99
    • 100
    • 101
    • 102
    • 103
    • 104
    • 105
    • 106
    • 107
    • 108
    • 109
    • 110
    • 111
    • 112
    • 113
    • 114
    • 115
    • 116
    • 117
    • 118
    • 119
    • 120
    • 121
    • 122
    • 123
    • 124
    • 125
    • 126
    • 127
    • 128
    • 129
    • 130
    • 131
    • 132
    • 133
    • 134
    • 135
    • 136
    • 137
    • 138
    • 139
    • 140
    • 141
    • 142
    • 143
    • 144
    • 145
    • 146
    • 147
    • 148
    • 149
    • 150
    • 151
    • 152
    • 153
    • 154
    • 155
    • 156
    • 157
    • 158
    • 159
    • 160
    • 161
    • 162
    • 163
    • 164
    • 165
    • 166
    • 167
    • 168
    • 169
    • 170
    • 171
    • 172
    • 173
    • 174
    • 175
    • 176
    • 177
    • 178
    • 179
    • 180
    • 181
    • 182
    • 183
    • 184
    • 185
    • 186
    • 187
    • 188
    • 189
    • 190
    • 191
    • 192
    • 193
    • 194
    • 195
    • 196
    • 197
    • 198
    • 199
    • 200
    • 201
    • 202
    • 203
    • 204
    • 205
    • 206
    • 207
    • 208
    • 209
    • 210
    • 211
    • 212
    • 213
    • 214
    • 215
    • 216
    • 217
    • 218
    • 219
    • 220
    • 221
    • 222
    • 223
    • 224
    • 225
    • 226
    • 227
    • 228
    • 229
    • 230
    • 231
    • 232
    • 233
    • 234
    • 235
    • 236
    • 237
    • 238
    • 239
    • 240
    • 241
    • 242
    • 243
    • 244
    • 245
    • 246
    • 247
    • 248
    • 249
    • 250
    • 251
    • 252
    • 253
    • 254
    • 255
    • 256
    • 257
    • 258
    • 259
    • 260
    • 261
    • 262
    • 263
    • 264
    • 265
    • 266
    • 267
    • 268
    • 269
    • 270
    • 271
    • 272
    • 273
    • 274
    • 275
    • 276
    • 277
    • 278
    • 279
    • 280
    • 281
    • 282
    • 283
    • 284
    • 285
    • 286
    • 287
    • 288
    • 289
    • 290
    • 291
    • 292
    • 293
    • 294
    • 295
    • 296
    • 297
    • 298
    • 299
    • 300
    • 301
    • 302
    • 303
    • 304
    • 305
    • 306
    • 307
    • 308
    • 309
    • 310
    • 311
    • 312
    • 313
    • 314
    • 315
    • 316
    • 317
    • 318
    • 319
    • 320
    • 321
    • 322
    • 323
    • 324
    • 325
    • 326
    • 327
    • 328
    • 329
    • 330
    • 331
    • 332
    • 333
    • 334
    • 335
    • 336
    • 337
    • 338
    • 339
    • 340
    • 341
    • 342
    • 343
    • 344
    • 345
    • 346
    • 347
    • 348
    • 349
    • 350
    • 351
    • 352
    • 353
    • 354
    • 355
    • 356
    • 357
    • 358
    • 359
    • 360
    • 361
    • 362
    • 363
    • 364
    • 365
    • 366
    • 367
    • 368
    • 369
    • 370
    • 371
    • 372
    • 373
    • 374
    • 375
    • 376
    • 377
    • 378
    • 379
    • 380
    • 381
    • 382
    • 383
    • 384
    • 385
    • 386
    • 387
    • 388
    • 389
    • 390
    • 391
    • 392
    • 393
    • 394
    • 395
    • 396
    • 397
    • 398
    • 399
    • 400
    • 401
    • 402
    • 403
    • 404
    • 405
    • 406
    • 407
    • 408
    • 409
    • 410
    • 411
    • 412
    • 413
    • 414
    • 415
    • 416
    • 417
    • 418
    • 419
    • 420
    • 421
    • 422
    • 423
    • 424
    • 425
    • 426
    • 427
    • 428
    • 429
    • 430
    • 431
    • 432
    • 433
    • 434
    • 435
    • 436
    • 437
    • 438
    • 439
    • 440
    • 441
    • 442
    • 443
    • 444
    • 445
    • 446
    • 447
    • 448
    • 449
    • 450
    • 451
    • 452
    • 453
    • 454
    • 455
    • 456
    • 457
    • 458
    • 459
    • 460
    • 461
    • 462
    • 463
    • 464
    • 465
    • 466
    • 467
    • 468
    • 469
    • 470
    • 471
    • 472
    • 473
    • 474
    • 475
    • 476
    • 477
    • 478
    • 479
    • 480
    • 481
    • 482
    • 483
    • 484
    • 485
    • 486
    • 487
    • 488
    • 489
    • 490
    • 491
    • 492
    • 493
    • 494
    • 495
    • 496
    • 497
    • 498
    • 499
    • 500
    • 501
    • 502
    • 503
    • 504
    • 505
    • 506
    • 507
    • 508
    • 509
    • 510
    • 511
    • 512
    • 513
    • 514
    • 515
    • 516
    • 517
    • 518
    • 519
    • 520
    • 521
    • 522
    • 523
    • 524
    • 525
    • 526
    • 527
    • 528
    • 529
    • 530
    • 531
    • 532
    • 533
    • 534
    • 535
    • 536
    • 537
    • 538
    • 539
    • 540
    • 541
    • 542
    • 543
    • 544
    • 545
    • 546
    • 547
    • 548
    • 549
    • 550
    • 551
    • 552
    • 553
    • 554
    • 555
    • 556
    • 557
    • 558
    • 559
    • 560
    • 561
    • 562
    • 563
    • 564
    • 565
    • 566
    • 567
    • 568
    • 569
    • 570
    • 571
    • 572
    • 573
    • 574
    • 575
    • 576
    • 577
    • 578
    • 579
    • 580
    • 581
    • 582
    • 583
    • 584
    • 585
    • 586
    • 587
    • 588
    • 589
    • 590
    • 591
    • 592
    • 593
    • 594
    • 595
    • 596
    • 597
    • 598
    • 599
    • 600
    • 601
    • 602
    • 603
    • 604
    • 605
    • 606
    • 607
    • 608
    • 609
    • 610
    • 611
    • 612
    • 613
    • 614
    • 615
    • 616
    • 617
    • 618
    • 619
    • 620
    • 621
    • 622
    • 623
    • 624
    • 625
    • 626
    • 627
    • 628
    • 629
    • 630
    • 631
    • 632
    • 633
    • 634
    • 635
    • 636
    • 637
    • 638
    • 639
    • 640
    • 641
    • 642
    • 643
    • 644
    • 645
    • 646
    • 647
    • 648
    • 649
    • 650
    • 651
    • 652
    • 653
    • 654
    • 655
    • 656
    • 657
    • 658
    • 659
    • 660
    • 661
    • 662
    • 663
    • 664
    • 665
    • 666
    • 667
    • 668
    • 669
    • 670
    • 671
    • 672
    • 673
    • 674
    • 675
    • 676
    • 677
    • 678
    • 679
    • 680
    • 681
    • 682
    • 683
    • 684
    • 685
    • 686
    • 687
    • 688
    • 689
    • 690
    • 691
    • 692
    • 693
    • 694
    • 695
    • 696
    • 697
    • 698
    • 699
    • 700
    • 701
    • 702
    • 703
    • 704
    • 705
    • 706
    • 707
    • 708
    • 709
    • 710
    • 711
    • 712
    • 713
    • 714
    • 715
    • 716
    • 717
    • 718
    • 719
    • 720
    • 721
    • 722
    • 723
    • 724
    • 725
    • 726
    • 727
    • 728
    • 729
    • 730
    • 731
    • 732
    • 733
    • 734
    • 735
    • 736
    • 737

    源:

    (1) openCV:环境配置和测试代码_opencv配置好了,怎么在studio中测试包含的代码-CSDN博客.
    (2) imgproc 模块. 图像处理 — OpenCV 2.3.2 documentation.

  • 相关阅读:
    阿里云原生应用平台架构师田伟:应用架构的规划、治理与演进
    2022.11.29总结
    最新gcc下载和linux环境变量设置
    【漏洞挖掘】Xray+rad自动化批量漏洞挖掘
    算法通关村第十九关——最少硬币数
    Zookeeper leader选举源码分析(超详细)
    Python 类self 详解
    金仓数据库KingbaseES数据库参考手册(静态数据词典视图2.3. KingbaseES兼容Oracle视图 )
    想要彻底搞的性能优化,得先从底层逻辑开始了解~
    使用nginx+docker实现一个简单的负载均衡
  • 原文地址:https://blog.csdn.net/shizuguilai/article/details/136418162