Motion Analysis and Object Tracking#
Detailed Description#
Function Documentation#
accumulate()#
void cv::accumulate(
InputArray src,
InputOutputArray dst,
InputArray mask = noArray() )
#include <opencv2/imgproc.hpp>
Python:
cv.accumulate(src, dst[, mask]) -> dst
Adds an image to the accumulator image.
The function adds src or some of its elements to dst :
The function supports multi-channel images. Each channel is processed independently.
The function cv::accumulate can be used, for example, to collect statistics of a scene background viewed by a still camera and for the further foreground-background segmentation.
See also
Parameters
src— Input image of type CV_8UC(n), CV_16UC(n), CV_32FC(n) or CV_64FC(n), where n is a positive integer.dst— Accumulator image with the same number of channels as input image, and a depth of CV_32F or CV_64F.mask— Optional operation mask.
accumulateProduct()#
void cv::accumulateProduct(
InputArray src1,
InputArray src2,
InputOutputArray dst,
InputArray mask = noArray() )
#include <opencv2/imgproc.hpp>
Python:
cv.accumulateProduct(src1, src2, dst[, mask]) -> dst
Adds the per-element product of two input images to the accumulator image.
The function adds the product of two images or their selected regions to the accumulator dst :
The function supports multi-channel images. Each channel is processed independently.
See also
Parameters
src1— First input image, 1- or 3-channel, 8-bit or 32-bit floating point.src2— Second input image of the same type and the same size as src1 .dst— Accumulator image with the same number of channels as input images, 32-bit or 64-bit floating-point.mask— Optional operation mask.
accumulateSquare()#
void cv::accumulateSquare(
InputArray src,
InputOutputArray dst,
InputArray mask = noArray() )
#include <opencv2/imgproc.hpp>
Python:
cv.accumulateSquare(src, dst[, mask]) -> dst
Adds the square of a source image to the accumulator image.
The function adds the input image src or its selected region, raised to a power of 2, to the accumulator dst :
The function supports multi-channel images. Each channel is processed independently.
See also
Parameters
src— Input image as 1- or 3-channel, 8-bit or 32-bit floating point.dst— Accumulator image with the same number of channels as input image, 32-bit or 64-bit floating-point.mask— Optional operation mask.
accumulateWeighted()#
void cv::accumulateWeighted(
InputArray src,
InputOutputArray dst,
double alpha,
InputArray mask = noArray() )
#include <opencv2/imgproc.hpp>
Python:
cv.accumulateWeighted(src, dst, alpha[, mask]) -> dst
Updates a running average.
The function calculates the weighted sum of the input image src and the accumulator dst so that dst becomes a running average of a frame sequence:
That is, alpha regulates the update speed (how fast the accumulator “forgets” about earlier images). The function supports multi-channel images. Each channel is processed independently.
See also
Parameters
src— Input image as 1- or 3-channel, 8-bit or 32-bit floating point.dst— Accumulator image with the same number of channels as input image, 32-bit or 64-bit floating-point.alpha— Weight of the input image.mask— Optional operation mask.
createHanningWindow()#
void cv::createHanningWindow(
OutputArray dst,
Size winSize,
int type )
#include <opencv2/imgproc.hpp>
Python:
cv.createHanningWindow(winSize, type[, dst]) -> dst
This function computes a Hanning window coefficients in two dimensions.
See (https://en.wikipedia.org/wiki/Hann_function) and (https://en.wikipedia.org/wiki/Window_function) for more information.
An example is shown below:
// create hanning window of size 100x100 and type CV_32F
Mat hann;
createHanningWindow(hann, Size(100, 100), CV_32F);
Parameters
dst— Destination array to place Hann coefficients inwinSize— The window size specifications (both width and height must be > 1)type— Created array type
phaseCorrelate()#
Point2d cv::phaseCorrelate(
InputArray src1,
InputArray src2,
InputArray window = noArray(),
double * response = 0 )
#include <opencv2/imgproc.hpp>
Python:
cv.phaseCorrelate(src1, src2[, window]) -> retval, response
The function is used to detect translational shifts that occur between two images.
The operation takes advantage of the Fourier shift theorem for detecting the translational shift in the frequency domain. It can be used for fast image registration as well as motion estimation. For more information please see https://en.wikipedia.org/wiki/Phase_correlation
Calculates the cross-power spectrum of two supplied source arrays. The arrays are padded if needed with getOptimalDFTSize.
The function performs the following equations:
First it applies a Hanning window to each image to remove possible edge effects, if it’s provided by user. See createHanningWindow and https://en.wikipedia.org/wiki/Hann_function. This window may be cached until the array size changes to speed up processing time.
Next it computes the forward DFTs of each source array:
where \(\mathcal{F}\) is the forward DFT.
It then computes the cross-power spectrum of each frequency domain array:
Next the cross-correlation is converted back into the time domain via the inverse DFT:
Finally, it computes the peak location and computes a 5x5 weighted centroid around the peak to achieve sub-pixel accuracy.
If non-zero, the response parameter is computed as the sum of the elements of r within the 5x5 centroid around the peak location. It is normalized to a maximum of 1 (meaning there is a single peak) and will be smaller when there are multiple peaks.
See also
dft, getOptimalDFTSize, idft, mulSpectrums createHanningWindow
Parameters
src1— Source floating point array (CV_32FC1 or CV_64FC1)src2— Source floating point array (CV_32FC1 or CV_64FC1)window— Floating point array with windowing coefficients to reduce edge effects (optional).response— Signal power within the 5x5 centroid around the peak, between 0 and 1 (optional).
Returns
detected phase shift (sub-pixel) between the two arrays.
phaseCorrelateIterative()#
Point2d cv::phaseCorrelateIterative(
InputArray src1,
InputArray src2,
int L2size = 7,
int maxIters = 10 )
#include <opencv2/imgproc.hpp>
Python:
cv.phaseCorrelateIterative(src1, src2[, L2size[, maxIters]]) -> retval
Detects translational shifts between two images.
This function extends the standard phaseCorrelate method by improving sub-pixel accuracy through iterative shift refinement in the phase-correlation space, as described in [146].
See also
Parameters
src1— Source floating point array (CV_32FC1 or CV_64FC1)src2— Source floating point array (CV_32FC1 or CV_64FC1)L2size— The size of the correlation neighborhood used by the iterative shift refinement algorithm.maxIters— The maximum number of iterations the iterative refinement algorithm will run.
Returns
detected sub-pixel shift between the two arrays.