OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:rmats
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/stitching/src/
motion_estimators.cpp
604
void waveCorrect(std::vector<Mat> &
rmats
, WaveCorrectKind kind)
610
if (
rmats
.size() <= 1)
617
for (size_t i = 0; i <
rmats
.size(); ++i)
619
Mat col =
rmats
[i].col(0);
634
for (size_t i = 0; i <
rmats
.size(); ++i)
635
img_k +=
rmats
[i].col(2);
651
for (size_t i = 0; i <
rmats
.size(); ++i)
652
conf += rg0.dot(
rmats
[i].col(0));
661
for (size_t i = 0; i <
rmats
.size(); ++i)
662
conf -= rg1.dot(
rmats
[i].col(0))
[
all
...]
stitcher.cpp
523
std::vector<Mat>
rmats
;
local
525
rmats
.push_back(cameras_[i].R.clone());
526
detail::waveCorrect(
rmats
, wave_correct_kind_);
528
cameras_[i].R =
rmats
[i];
/external/opencv3/modules/stitching/include/opencv2/stitching/detail/
motion_estimators.hpp
247
@param
rmats
Camera rotation matrices.
250
void CV_EXPORTS waveCorrect(std::vector<Mat> &
rmats
, WaveCorrectKind kind);
/external/opencv3/samples/cpp/
stitching_detailed.cpp
564
vector<Mat>
rmats
;
local
566
rmats
.push_back(cameras[i].R.clone());
567
waveCorrect(
rmats
, wave_correct);
569
cameras[i].R =
rmats
[i];
Completed in 78 milliseconds