I'm trying to get an running average of frames from my cam, but after a few secounds the image of the averaged frames gets brighter and brighter and than white.
my cam provides an image in gray scale with 3 channels. I'm on windows 7, Visualstudio 2012, opencv 243
#include<opencv2\opencv.hpp>
#include<opencv2\core\core.hpp>
#include<opencv2\highgui\highgui.hpp>
#include <iostream>
using namespace cv;
using namespace std;
int main(int argc, char* argv[])
{
VideoCapture cap(0);
Mat frame1;
cap.read(frame1);
Mat acc = Mat::zeros(frame1.size(), CV_32FC1);
while(1){
Mat frame;
Mat gray;
cap.read(frame);
cvtColor(frame ,gray ,CV_BGR2GRAY,0);
accumulateWeighted(gray, acc,0.005);
imshow("gray", gray);
imshow("acc", acc);
waitKey(1); //don't know why I need it but without it the windows freezes
}
}
can anyone tell me what i did wrong? Thanks!
I found a more elegant solution for this question. The function that you need is already provided by OpenCV. This works on 3-channel color or 1-channel grayscale images:
Method convertScaleAbs
Inline documentation
Signature
convertScaleAbs(InputArray src, OutputArray dst, double alpha=1, double beta=0)
Example code