单个通道的平均值

时间:2013-01-16 01:14:22

标签: c++ image-processing opencv computer-vision

我将图像从rgb转换为YUV。现在我想找到单独的亮度通道的平均值。你能告诉我如何实现这个目标吗?此外,有没有办法确定图像包含多少个通道?

2 个答案:

答案 0 :(得分:15)

你可以这样做:

#include <opencv2/core/core.hpp>
#include <opencv2/highgui/highgui.hpp>
#include <stdio.h>

using namespace cv;

int main(void)
{
    vector<Mat> channels;
    Mat img = imread("Documents/forest.jpg");
    split(img, channels);
    Scalar m = mean(channels[0]);
    printf("%f\n", m[0]);

    return 0;
}

答案 1 :(得分:3)

Image.channels()将为您提供任何图像中的通道数。请参阅OpenCV文档。

可以按如下方式访问多个频道:

        img.at<Vec3b>(i,j)[0] //Y
        img.at<Vec3b>(i,j)[1] //U
        img.at<Vec3b>(i,j)[2] //V