OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:kps
(Results
1 - 3
of
3
) sorted by null
/external/opencv3/modules/java/generator/src/java/
utils+Converters.java
438
public static Mat vector_KeyPoint_to_Mat(List<KeyPoint>
kps
) {
440
int count = (
kps
!= null) ?
kps
.size() : 0;
445
KeyPoint kp =
kps
.get(i);
461
public static void Mat_to_vector_KeyPoint(Mat m, List<KeyPoint>
kps
) {
462
if (
kps
== null)
469
kps
.clear();
473
kps
.add(new KeyPoint((float) buff[7 * i], (float) buff[7 * i + 1], (float) buff[7 * i + 2], (float) buff[7 * i + 3],
574
public static Mat vector_vector_KeyPoint_to_Mat(List<MatOfKeyPoint>
kps
, List<Mat> mats) {
576
int lCount = (
kps
!= null) ? kps.size() : 0
[
all
...]
/external/opencv3/modules/java/common_test/src/org/opencv/test/utils/
ConvertersTest.java
83
List<KeyPoint>
kps
= new ArrayList<KeyPoint>();
local
85
Converters.Mat_to_vector_KeyPoint(src,
kps
);
89
assertListKeyPointEquals(truth,
kps
, EPS);
330
List<KeyPoint>
kps
= new ArrayList<KeyPoint>();
local
331
kps
.add(new KeyPoint(2, 4, 3, 9, 10, 12, 7));
333
dst = Converters.vector_KeyPoint_to_Mat(
kps
);