OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ninliers
(Results
1 - 4
of
4
) sorted by null
/external/opencv3/modules/videostab/src/
outlier_rejection.cpp
104
int
ninliers
, ninliersMax;
local
128
ninliers
= 0;
136
ninliers
++;
140
if (
ninliers
> ninliersMax)
142
ninliersMax =
ninliers
;
151
ninliers
= 0;
160
inliers[
ninliers
++] = cell[i];
global_motion.cpp
381
float *rmse, int *
ninliers
)
474
if (
ninliers
)
475
*
ninliers
= ninliersMax;
497
int
ninliers
= 0;
local
502
points0, points1, motionModel(), ransacParams_, 0, &
ninliers
);
508
if (mask[i])
ninliers
++;
514
if (static_cast<float>(
ninliers
) / npoints < minInlierRatio_)
/external/opencv3/modules/videostab/include/opencv2/videostab/
global_motion.hpp
88
@param
ninliers
Final number of inliers.
93
float *rmse = 0, int *
ninliers
= 0);
/external/opencv3/modules/calib3d/test/
test_homography.cpp
623
int
ninliers
= countNonZero(mask);
local
632
printf("
ninliers
: %d, inliers err: %.2g\n",
ninliers
, err);
633
ASSERT_GE(
ninliers
, 10);
[
all
...]
Completed in 142 milliseconds