OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:hostPoints_
(Results
1 - 2
of
2
) sorted by null
/external/opencv3/modules/videostab/src/
global_motion.cpp
810
points_.download(
hostPoints_
);
817
outlierRejector_->process(frame0.size(), hostPointsPrev_,
hostPoints_
, rejectionStatus_);
820
hostPointsPrevTmp_.reserve(
hostPoints_
.cols);
823
hostPointsTmp_.reserve(
hostPoints_
.cols);
825
for (int i = 0; i <
hostPoints_
.cols; ++i)
830
hostPointsTmp_.push_back(
hostPoints_
.at<Point2f>(0,i));
835
hostPoints_
= Mat(1, (int)hostPointsTmp_.size(), CV_32FC2, &hostPointsTmp_[0]);
839
return motionEstimator_->estimate(hostPointsPrev_,
hostPoints_
, ok);
/external/opencv3/modules/videostab/include/opencv2/videostab/
global_motion.hpp
278
Mat hostPointsPrev_,
hostPoints_
;
Completed in 38 milliseconds