OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:pointsCount
(Results
1 - 7
of
7
) sorted by null
/external/opencv3/modules/calib3d/test/
test_modelest.cpp
119
int
pointsCount
= cvtest::randInt(rng) % maxPointsCount;
120
usedPointsCount =
pointsCount
== 0 ? 0 : cvtest::randInt(rng) %
pointsCount
;
122
sizes[INPUT][0] = cvSize(1,
pointsCount
);
test_solvepnp_ransac.cpp
160
const int
pointsCount
= 500;
161
points.resize(
pointsCount
);
test_stereomatching.cpp
276
int
pointsCount
= sz.height*sz.width;
280
pointsCount
= countNonZero(mask);
282
return 1.f/sqrt((float)
pointsCount
) * (float)cvtest::norm(computedDisp, groundTruthDisp, NORM_L2, mask);
299
int
pointsCount
= sz.height*sz.width;
304
pointsCount
= countNonZero(mask);
306
return 1.f/
pointsCount
* countNonZero(badPxlsMap);
test_cameracalibration.cpp
[
all
...]
/external/opencv3/modules/video/perf/opencl/
perf_optflow_pyrlk.cpp
84
const int
pointsCount
= get<0>(params);
87
goodFeaturesToTrack(frame0, pts,
pointsCount
, 0.01, 0.0);
/external/opencv3/modules/features2d/test/
test_nearestneighbors.cpp
89
int
pointsCount
= 1000;
93
Mat points(
pointsCount
, dims, CV_32FC1 );
94
Mat results(
pointsCount
, K, CV_32SC1 );
96
std::vector<int> fmap(
pointsCount
);
97
for( int pi = 0; pi <
pointsCount
; pi++ )
110
for( int pi = 0; pi <
pointsCount
; pi++ )
116
double correctPerc = correctMatches / (double)
pointsCount
;
/external/opencv3/modules/ml/test/
test_emknearestkmeans.cpp
231
int
pointsCount
= sizesArr[0]+ sizesArr[1] + sizesArr[2];
233
Mat data(
pointsCount
, 2, CV_32FC1 ), labels;
272
for( int i = 0; i < 0.5f *
pointsCount
; i++ )
273
bestLabels.at<int>( rng.next() %
pointsCount
, 0 ) = rng.next() % 3;
300
int
pointsCount
= sizesArr[0]+ sizesArr[1] + sizesArr[2];
303
Mat trainData(
pointsCount
, 2, CV_32FC1 ), trainLabels;
311
Mat testData(
pointsCount
, 2, CV_32FC1 ), testLabels, bestLabels;
448
int
pointsCount
= sizesArr[0]+ sizesArr[1] + sizesArr[2];
456
Mat trainData(
pointsCount
, 2, CV_64FC1 ), trainLabels;
461
Mat testData(
pointsCount
, 2, CV_64FC1 ), testLabels
[
all
...]
Completed in 119 milliseconds