Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
Tetragramm
GitHub Repository: Tetragramm/opencv
Path: blob/master/modules/features2d/misc/java/test/SURFDescriptorExtractorTest.java
16354 views
1
package org.opencv.test.features2d;
2
3
import org.opencv.core.CvType;
4
import org.opencv.core.Mat;
5
import org.opencv.core.MatOfKeyPoint;
6
import org.opencv.core.Point;
7
import org.opencv.core.Scalar;
8
import org.opencv.core.KeyPoint;
9
import org.opencv.test.OpenCVTestCase;
10
import org.opencv.test.OpenCVTestRunner;
11
import org.opencv.imgproc.Imgproc;
12
import org.opencv.features2d.Feature2D;
13
14
public class SURFDescriptorExtractorTest extends OpenCVTestCase {
15
16
Feature2D extractor;
17
int matSize;
18
19
private Mat getTestImg() {
20
Mat cross = new Mat(matSize, matSize, CvType.CV_8U, new Scalar(255));
21
Imgproc.line(cross, new Point(20, matSize / 2), new Point(matSize - 21, matSize / 2), new Scalar(100), 2);
22
Imgproc.line(cross, new Point(matSize / 2, 20), new Point(matSize / 2, matSize - 21), new Scalar(100), 2);
23
24
return cross;
25
}
26
27
@Override
28
protected void setUp() throws Exception {
29
super.setUp();
30
31
Class[] cParams = {double.class, int.class, int.class, boolean.class, boolean.class};
32
Object[] oValues = {100, 2, 4, true, false};
33
extractor = createClassInstance(XFEATURES2D+"SURF", DEFAULT_FACTORY, cParams, oValues);
34
35
matSize = 100;
36
}
37
38
public void testComputeListOfMatListOfListOfKeyPointListOfMat() {
39
fail("Not yet implemented");
40
}
41
42
public void testComputeMatListOfKeyPointMat() {
43
KeyPoint point = new KeyPoint(55.775577545166016f, 44.224422454833984f, 16, 9.754629f, 8617.863f, 1, -1);
44
MatOfKeyPoint keypoints = new MatOfKeyPoint(point);
45
Mat img = getTestImg();
46
Mat descriptors = new Mat();
47
48
extractor.compute(img, keypoints, descriptors);
49
50
Mat truth = new Mat(1, 128, CvType.CV_32FC1) {
51
{
52
put(0, 0,
53
0, 0, 0, 0, 0, 0, 0, 0, 0.058821894, 0.058821894, -0.045962855, 0.046261817, 0.0085156476,
54
0.0085754395, -0.0064509804, 0.0064509804, 0.00044069235, 0.00044069235, 0, 0, 0.00025723741,
55
0.00025723741, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0.00025723741, 0.00025723741, -0.00044069235,
56
0.00044069235, 0, 0, 0.36278215, 0.36278215, -0.24688604, 0.26173124, 0.052068226, 0.052662034,
57
-0.032815345, 0.032815345, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, -0.0064523756,
58
0.0064523756, 0.0082002236, 0.0088908644, -0.059001274, 0.059001274, 0.045789491, 0.04648013,
59
0.11961588, 0.22789426, -0.01322381, 0.18291828, -0.14042182, 0.23973691, 0.073782086, 0.23769434,
60
-0.027880307, 0.027880307, 0.049587864, 0.049587864, -0.33991757, 0.33991757, 0.21437603, 0.21437603,
61
-0.0020763327, 0.0020763327, 0.006245892, 0.006245892, -0.04067041, 0.04067041, 0.019361559,
62
0.019361559, 0, 0, -0.0035977389, 0.0035977389, 0, 0, -0.00099993451, 0.00099993451, 0.040670406,
63
0.040670406, -0.019361559, 0.019361559, 0.006245892, 0.006245892, -0.0020763327, 0.0020763327,
64
-0.00034532088, 0.00034532088, 0, 0, 0, 0, 0.00034532088, 0.00034532088, -0.00099993451,
65
0.00099993451, 0, 0, 0, 0, 0.0035977389, 0.0035977389
66
);
67
}
68
};
69
70
assertMatEqual(truth, descriptors, EPS);
71
}
72
73
public void testCreate() {
74
assertNotNull(extractor);
75
}
76
77
public void testDescriptorSize() {
78
assertEquals(128, extractor.descriptorSize());
79
}
80
81
public void testDescriptorType() {
82
assertEquals(CvType.CV_32F, extractor.descriptorType());
83
}
84
85
public void testEmpty() {
86
// assertFalse(extractor.empty());
87
fail("Not yet implemented");
88
}
89
90
public void testRead() {
91
String filename = OpenCVTestRunner.getTempFileName("yml");
92
writeFile(filename, "%YAML:1.0\n---\nnOctaves: 4\nnOctaveLayers: 2\nextended: 1\nupright: 0\n");
93
94
extractor.read(filename);
95
96
assertEquals(128, extractor.descriptorSize());
97
}
98
99
public void testWrite() {
100
String filename = OpenCVTestRunner.getTempFileName("xml");
101
102
extractor.write(filename);
103
104
// String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n<name>Feature2D.SURF</name>\n<extended>1</extended>\n<hessianThreshold>100.</hessianThreshold>\n<nOctaveLayers>2</nOctaveLayers>\n<nOctaves>4</nOctaves>\n<upright>0</upright>\n</opencv_storage>\n";
105
String truth = "<?xml version=\"1.0\"?>\n<opencv_storage>\n</opencv_storage>\n";
106
assertEquals(truth, readFile(filename));
107
}
108
109
public void testWriteYml() {
110
String filename = OpenCVTestRunner.getTempFileName("yml");
111
112
extractor.write(filename);
113
114
// String truth = "%YAML:1.0\n---\nname: \"Feature2D.SURF\"\nextended: 1\nhessianThreshold: 100.\nnOctaveLayers: 2\nnOctaves: 4\nupright: 0\n";
115
String truth = "%YAML:1.0\n---\n";
116
assertEquals(truth, readFile(filename));
117
}
118
119
}
120
121