|
| CVAPI (void) cvCalcOpticalFlowPyrLK(const CvArr *prev |
|
| CVAPI (int) cvEstimateRigidTransform(const CvArr *A |
|
CvArr CvArr double double int
aperture_size | CV_DEFAULT (3)) |
|
| CVAPI (double) cvCalcGlobalOrientation(const CvArr *orientation |
|
| CVAPI (CvSeq *) cvSegmentMotion(const CvArr *mhi |
|
CvRect CvTermCriteria
CvConnectedComp CvBox2D *box | CV_DEFAULT (NULL)) |
|
| CVAPI (CvKalman *) cvCreateKalman(int dynam_params |
|
int int control_params | CV_DEFAULT (0)) |
|
| CVAPI (const CvMat *) cvKalmanPredict(CvKalman *kalman |
|
CV_EXPORTS_W void | cv::updateMotionHistory (InputArray silhouette, InputOutputArray mhi, double timestamp, double duration) |
| updates motion history image using the current silhouette More...
|
|
CV_EXPORTS_W void | cv::calcMotionGradient (InputArray mhi, OutputArray mask, OutputArray orientation, double delta1, double delta2, int apertureSize=3) |
| computes the motion gradient orientation image from the motion history image More...
|
|
CV_EXPORTS_W double | cv::calcGlobalOrientation (InputArray orientation, InputArray mask, InputArray mhi, double timestamp, double duration) |
| computes the global orientation of the selected motion history image part More...
|
|
CV_EXPORTS_W void | cv::segmentMotion (InputArray mhi, OutputArray segmask, CV_OUT vector< Rect > &boundingRects, double timestamp, double segThresh) |
|
CV_EXPORTS_W RotatedRect | cv::CamShift (InputArray probImage, CV_OUT CV_IN_OUT Rect &window, TermCriteria criteria) |
| updates the object tracking window using CAMSHIFT algorithm More...
|
|
CV_EXPORTS_W int | cv::meanShift (InputArray probImage, CV_OUT CV_IN_OUT Rect &window, TermCriteria criteria) |
| updates the object tracking window using meanshift algorithm More...
|
|
CV_EXPORTS_W int | cv::buildOpticalFlowPyramid (InputArray img, OutputArrayOfArrays pyramid, Size winSize, int maxLevel, bool withDerivatives=true, int pyrBorder=BORDER_REFLECT_101, int derivBorder=BORDER_CONSTANT, bool tryReuseInputImage=true) |
| constructs a pyramid which can be used as input for calcOpticalFlowPyrLK More...
|
|
CV_EXPORTS_W void | cv::calcOpticalFlowPyrLK (InputArray prevImg, InputArray nextImg, InputArray prevPts, CV_OUT InputOutputArray nextPts, OutputArray status, OutputArray err, Size winSize=Size(21, 21), int maxLevel=3, TermCriteria criteria=TermCriteria(TermCriteria::COUNT+TermCriteria::EPS, 30, 0.01), int flags=0, double minEigThreshold=1e-4) |
| computes sparse optical flow using multi-scale Lucas-Kanade algorithm More...
|
|
CV_EXPORTS_W void | cv::calcOpticalFlowFarneback (InputArray prev, InputArray next, CV_OUT InputOutputArray flow, double pyr_scale, int levels, int winsize, int iterations, int poly_n, double poly_sigma, int flags) |
| computes dense optical flow using Farneback algorithm More...
|
|
CV_EXPORTS_W Mat | cv::estimateRigidTransform (InputArray src, InputArray dst, bool fullAffine) |
| estimates the best-fit Euqcidean, similarity, affine or perspective transformation More...
|
|
CV_EXPORTS_W void | cv::calcOpticalFlowSF (Mat &from, Mat &to, Mat &flow, int layers, int averaging_block_size, int max_flow) |
| computes dense optical flow using Simple Flow algorithm More...
|
|
CV_EXPORTS_W void | cv::calcOpticalFlowSF (Mat &from, Mat &to, Mat &flow, int layers, int averaging_block_size, int max_flow, double sigma_dist, double sigma_color, int postprocess_window, double sigma_dist_fix, double sigma_color_fix, double occ_thr, int upscale_averaging_radius, double upscale_sigma_dist, double upscale_sigma_color, double speed_up_thr) |
|
CV_EXPORTS Ptr< DenseOpticalFlow > | cv::createOptFlow_DualTVL1 () |
|
The Object and Feature Tracking.