average of some frames
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
}
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
}
Asked: 2013-12-20 05:41:12 -0600
Seen: 255 times
Last updated: Dec 20 '13
OpenCV DescriptorMatcher matches
Conversion between IplImage and MxArray
Video On Label OpenCV Qt :: hide cvNamedWindows
Problems using the math.h class with OpenCV (c++, VS2012)
How to reduce false positives for face detection
Area of a single pixel object in OpenCV
build problems for android_binary_package - Eclipse Indigo, Ubuntu 12.04
Can't compile .cu file when including opencv.hpp
Using OpenCV's stitching module, strange error when compositing images
Why frames are std::list<float*> ? May be std::list<cv::Mat> ? Else, list<T> has not index, use iterator.
because each element of the list is a float pointer to the current frame.