OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:getMotion
(Results
1 - 7
of
7
) sorted by null
/external/opencv3/modules/videostab/src/
wobble_suppression.cpp
115
Mat_<float> ML = S1 *
getMotion
(k1, idx, *motions2_) *
getMotion
(k1, idx, *motions_).inv() * S1.inv();
116
Mat_<float> MR = S1 *
getMotion
(idx, k2, *motions2_).inv() *
getMotion
(idx, k2, *motions_) * S1.inv();
167
Mat ML = S1 *
getMotion
(k1, idx, *motions2_) *
getMotion
(k1, idx, *motions_).inv() * S1.inv();
168
Mat MR = S1 *
getMotion
(idx, k2, *motions2_).inv() *
getMotion
(idx, k2, *motions_) * S1.inv();
deblurring.cpp
96
Mat_<float> M =
getMotion
(idx, k, *motions_);
stabilizer.cpp
351
Mat_<float> M =
getMotion
(0, i, motions);
359
Mat_<float> M = stabilizationMotions[i] *
getMotion
(0, i, motions);
inpainting.cpp
133
vmotions[radius_ + i] =
getMotion
(idx, idx + i, *motions_) * invS;
344
Mat motion0to1 =
getMotion
(idx, idx + i, *motions_) * at(idx, *stabilizationMotions_).inv();
global_motion.cpp
845
Mat
getMotion
(int from, int to, const std::vector<Mat> &motions)
motion_stabilizing.cpp
114
res += weight_[radius_ + i - idx] *
getMotion
(idx, i, motions);
/external/opencv3/modules/videostab/include/opencv2/videostab/
global_motion.hpp
292
CV_EXPORTS Mat
getMotion
(int from, int to, const std::vector<Mat> &motions);
Completed in 383 milliseconds