使用Mat OpenCV访问像素

时间:2011-08-24 23:05:10

标签: c++ image opencv rgb pixel

我想使用OpenCV 2.3访问RGB中的像素。 我正在尝试这样但是就像每帧像素一帧接一帧,因为我没有输出。图像来自我的网络摄像头,我可以看到它们。 Btw RED = 0;

THX

Mat frame;
Mat oldFrame;

VideoCapture cap(0);
cap >> oldFrame;
sumFramePix = oldFrame.cols * oldFrame.rows;
nbChannels = oldFrame.channels();
cout << "NbcHANNELs : " << nbChannels << endl;
imshow("Video 1", oldFrame);

while(1)
{
    cap >> frame;
    imshow("Video 1", frame);

    for(int i=0; i<frame.rows; i++)
    {
        for(int j=0; j<frame.cols; j++)
        {
            if (frame.ptr<uchar>(i)[nbChannels*j+RED] < oldFrame.ptr<uchar>(i)[nbChannels*j+RED])
            {
                cout << "==============-";
            }
        }
    }
    oldFrame = frame;

    if(waitKey(300) >= 0) break;
}

1 个答案:

答案 0 :(得分:2)

更改

oldFrame = frame;

oldFrame = frame.clone();

您正在创建两个指向相同数据的Mat对象。 clone()制作了深层副本。