I' try to build the mean value of 10 frames so I tried :
.....
cv::Mat frame,outf,resultframe1, resultframe2;
VideoCapture cap(1);
cap>> frame;
resultframe1 = Mat::zeros(frame.rows,frame.cols,CV_32F);
resultframe2 = Mat::zeros(frame.rows,frame.cols,CV_32F);
while(waitKey(0) != 27}{
cap>> frame;
if ( waitKey(1) = 'm'){
for ( int j = 0 ; j <= 10 ; j++){
cv::add(frame,resultframe1,resultframe2);// here crashes the program ?????
....
}
}
any Idea how can I solve that. thanks in advance

frame,resultframe1, andresultframe2are all valid and not null? – WildCrustacean Jan 7 at 15:38=sign instead of double==in if condition. 1 extraforloop iteration. It will run 11 times instead of 10 times. – sgar91 Jan 7 at 18:44