Is there any possibility in opencv to get average of some frames?
1 | initial version |
Is there any possibility in opencv to get average of some frames?
2 | No.2 Revision |
Is there any possibility in opencv to get average of some frames?
std::list<float*> frames;
for(int i = 0; i < frames.size(); i++)
{
//Average of frames
}
3 | retagged |
Is there any possibility in opencv to get average of some frames?
std::list<float*> frames;
for(int i = 0; i < frames.size(); i++)
{
//Average of frames
}