OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:ntuples
(Results
1 - 4
of
4
) sorted by null
/external/autotest/server/
base_utils_unittest.py
17
self.
ntuples
= [['mach1', 'mach2'], ['mach3', 'mach4'],
24
(
ntuples
, failures) = utils.form_ntuples_from_machines(self.machines)
25
self.assertEquals(self.
ntuples
,
ntuples
)
base_utils.py
224
"""Returns a set of
ntuples
from machines where the machines in an
227
ntuples
= []
238
ntuples
.append(key_machines[0:n])
244
return (
ntuples
, failures)
/external/opencv3/modules/cudafeatures2d/src/
orb.cpp
431
static void initializeOrbPattern(const Point* pattern0, Mat& pattern, int
ntuples
, int tupleSize, int poolSize)
435
pattern.create(2,
ntuples
* tupleSize, CV_32SC1);
441
for (int i = 0; i <
ntuples
; i++)
564
int
ntuples
= descriptorSize() * 4;
565
initializeOrbPattern(pattern0, h_pattern,
ntuples
, WTA_K_, npoints);
[
all
...]
/external/opencv3/modules/features2d/src/
orb.cpp
347
static void initializeOrbPattern( const Point* pattern0, std::vector<Point>& pattern, int
ntuples
, int tupleSize, int poolSize )
351
pattern.resize(
ntuples
*tupleSize);
353
for( i = 0; i <
ntuples
; i++ )
[
all
...]
Completed in 85 milliseconds