-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdoc.txt
183 lines (181 loc) · 5.47 KB
/
doc.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
Help on ORB object:
class ORB(Feature2D)
| Method resolution order:
| ORB
| Feature2D
| Algorithm
| builtins.object
|
| Methods defined here:
|
| __new__(*args, **kwargs) from builtins.type
| Create and return a new object. See help(type) for accurate signature.
|
| __repr__(self, /)
| Return repr(self).
|
| getEdgeThreshold(...)
| getEdgeThreshold() -> retval
| .
|
| getFastThreshold(...)
| getFastThreshold() -> retval
| .
|
| getFirstLevel(...)
| getFirstLevel() -> retval
| .
|
| getMaxFeatures(...)
| getMaxFeatures() -> retval
| .
|
| getNLevels(...)
| getNLevels() -> retval
| .
|
| getPatchSize(...)
| getPatchSize() -> retval
| .
|
| getScaleFactor(...)
| getScaleFactor() -> retval
| .
|
| getScoreType(...)
| getScoreType() -> retval
| .
|
| getWTA_K(...)
| getWTA_K() -> retval
| .
|
| setEdgeThreshold(...)
| setEdgeThreshold(edgeThreshold) -> None
| .
|
| setFastThreshold(...)
| setFastThreshold(fastThreshold) -> None
| .
|
| setFirstLevel(...)
| setFirstLevel(firstLevel) -> None
| .
|
| setMaxFeatures(...)
| setMaxFeatures(maxFeatures) -> None
| .
|
| setNLevels(...)
| setNLevels(nlevels) -> None
| .
|
| setPatchSize(...)
| setPatchSize(patchSize) -> None
| .
|
| setScaleFactor(...)
| setScaleFactor(scaleFactor) -> None
| .
|
| setScoreType(...)
| setScoreType(scoreType) -> None
| .
|
| setWTA_K(...)
| setWTA_K(wta_k) -> None
| .
|
| ----------------------------------------------------------------------
| Methods inherited from Feature2D:
|
| compute(...)
| compute(image, keypoints[, descriptors]) -> keypoints, descriptors
| . @brief Computes the descriptors for a set of keypoints detected in an image (first variant) or image set
| . (second variant).
| .
| . @param image Image.
| . @param keypoints Input collection of keypoints. Keypoints for which a descriptor cannot be
| . computed are removed. Sometimes new keypoints can be added, for example: SIFT duplicates keypoint
| . with several dominant orientations (for each orientation).
| . @param descriptors Computed descriptors. In the second variant of the method descriptors[i] are
| . descriptors computed for a keypoints[i]. Row j is the keypoints (or keypoints[i]) is the
| . descriptor for keypoint j-th keypoint.
|
|
|
| compute(images, keypoints[, descriptors]) -> keypoints, descriptors
| . @overload
| .
| . @param images Image set.
| . @param keypoints Input collection of keypoints. Keypoints for which a descriptor cannot be
| . computed are removed. Sometimes new keypoints can be added, for example: SIFT duplicates keypoint
| . with several dominant orientations (for each orientation).
| . @param descriptors Computed descriptors. In the second variant of the method descriptors[i] are
| . descriptors computed for a keypoints[i]. Row j is the keypoints (or keypoints[i]) is the
| . descriptor for keypoint j-th keypoint.
|
| defaultNorm(...)
| defaultNorm() -> retval
| .
|
| descriptorSize(...)
| descriptorSize() -> retval
| .
|
| descriptorType(...)
| descriptorType() -> retval
| .
|
| detect(...)
| detect(image[, mask]) -> keypoints
| . @brief Detects keypoints in an image (first variant) or image set (second variant).
| .
| . @param image Image.
| . @param keypoints The detected keypoints. In the second variant of the method keypoints[i] is a set
| . of keypoints detected in images[i] .
| . @param mask Mask specifying where to look for keypoints (optional). It must be a 8-bit integer
| . matrix with non-zero values in the region of interest.
|
|
|
| detect(images[, masks]) -> keypoints
| . @overload
| . @param images Image set.
| . @param keypoints The detected keypoints. In the second variant of the method keypoints[i] is a set
| . of keypoints detected in images[i] .
| . @param masks Masks for each input image specifying where to look for keypoints (optional).
| . masks[i] is a mask for images[i].
|
| detectAndCompute(...)
| detectAndCompute(image, mask[, descriptors[, useProvidedKeypoints]]) -> keypoints, descriptors
| . Detects keypoints and computes the descriptors
|
| empty(...)
| empty() -> retval
| .
|
| read(...)
| read(fileName) -> None
| .
|
| write(...)
| write(fileName) -> None
| .
|
| ----------------------------------------------------------------------
| Methods inherited from Algorithm:
|
| clear(...)
| clear() -> None
| . @brief Clears the algorithm state
|
| getDefaultName(...)
| getDefaultName() -> retval
| . Returns the algorithm string identifier.
| . This string is used as top level xml/yml node tag when the object is saved to a file or string.
|
| save(...)
| save(filename) -> None
| . Saves the algorithm to a file.
| . In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs).