43
#ifndef OPENCV_VIDEOSTAB_OUTLIER_REJECTION_HPP
44
#define OPENCV_VIDEOSTAB_OUTLIER_REJECTION_HPP
47
#include "opencv2/core.hpp"
48
#include "opencv2/videostab/motion_core.hpp"
64
Size
frameSize, InputArray points0, InputArray points1,
OutputArray
mask) = 0;
71
Size
frameSize, InputArray points0, InputArray points1,
OutputArray
mask) CV_OVERRIDE;
79
void
setCellSize(
Size
val) { cellSize_ = val; }
80
Size
cellSize()
const
{
return
cellSize_; }
82
void
setRansacParams(
RansacParams
val) { ransacParams_ = val; }
83
RansacParams
ransacParams()
const
{
return
ransacParams_; }
86
Size
frameSize, InputArray points0, InputArray points1,
OutputArray
mask) CV_OVERRIDE;
92
typedef
std::vector<int> Cell;
93
std::vector<Cell> grid_;
This type is very similar to InputArray except that it is used for input/output and output function p...
Definition:
mat.hpp:295
Template class for specifying the size of an image or rectangle.
Definition:
core/types.hpp:316
Definition:
outlier_rejection.hpp:59
Definition:
outlier_rejection.hpp:68
Definition:
outlier_rejection.hpp:75
"black box" representation of the file storage associated with a file on disk.
Definition:
aruco.hpp:75
Describes RANSAC method parameters.
Definition:
motion_core.hpp:74