DTrees.java
7.77 KB
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
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
//
// This file is auto-generated. Please don't modify it!
//
package org.opencv.ml;
import java.lang.String;
import org.opencv.core.Mat;
// C++: class DTrees
//javadoc: DTrees
public class DTrees extends StatModel {
protected DTrees(long addr) { super(addr); }
public static final int
PREDICT_AUTO = 0,
PREDICT_SUM = (1<<8),
PREDICT_MAX_VOTE = (2<<8),
PREDICT_MASK = (3<<8);
//
// C++: Mat getPriors()
//
//javadoc: DTrees::getPriors()
public Mat getPriors()
{
Mat retVal = new Mat(getPriors_0(nativeObj));
return retVal;
}
//
// C++: static Ptr_DTrees create()
//
//javadoc: DTrees::create()
public static DTrees create()
{
DTrees retVal = new DTrees(create_0());
return retVal;
}
//
// C++: static Ptr_DTrees load(String filepath, String nodeName = String())
//
//javadoc: DTrees::load(filepath, nodeName)
public static DTrees load(String filepath, String nodeName)
{
DTrees retVal = new DTrees(load_0(filepath, nodeName));
return retVal;
}
//javadoc: DTrees::load(filepath)
public static DTrees load(String filepath)
{
DTrees retVal = new DTrees(load_1(filepath));
return retVal;
}
//
// C++: bool getTruncatePrunedTree()
//
//javadoc: DTrees::getTruncatePrunedTree()
public boolean getTruncatePrunedTree()
{
boolean retVal = getTruncatePrunedTree_0(nativeObj);
return retVal;
}
//
// C++: bool getUse1SERule()
//
//javadoc: DTrees::getUse1SERule()
public boolean getUse1SERule()
{
boolean retVal = getUse1SERule_0(nativeObj);
return retVal;
}
//
// C++: bool getUseSurrogates()
//
//javadoc: DTrees::getUseSurrogates()
public boolean getUseSurrogates()
{
boolean retVal = getUseSurrogates_0(nativeObj);
return retVal;
}
//
// C++: float getRegressionAccuracy()
//
//javadoc: DTrees::getRegressionAccuracy()
public float getRegressionAccuracy()
{
float retVal = getRegressionAccuracy_0(nativeObj);
return retVal;
}
//
// C++: int getCVFolds()
//
//javadoc: DTrees::getCVFolds()
public int getCVFolds()
{
int retVal = getCVFolds_0(nativeObj);
return retVal;
}
//
// C++: int getMaxCategories()
//
//javadoc: DTrees::getMaxCategories()
public int getMaxCategories()
{
int retVal = getMaxCategories_0(nativeObj);
return retVal;
}
//
// C++: int getMaxDepth()
//
//javadoc: DTrees::getMaxDepth()
public int getMaxDepth()
{
int retVal = getMaxDepth_0(nativeObj);
return retVal;
}
//
// C++: int getMinSampleCount()
//
//javadoc: DTrees::getMinSampleCount()
public int getMinSampleCount()
{
int retVal = getMinSampleCount_0(nativeObj);
return retVal;
}
//
// C++: void setCVFolds(int val)
//
//javadoc: DTrees::setCVFolds(val)
public void setCVFolds(int val)
{
setCVFolds_0(nativeObj, val);
return;
}
//
// C++: void setMaxCategories(int val)
//
//javadoc: DTrees::setMaxCategories(val)
public void setMaxCategories(int val)
{
setMaxCategories_0(nativeObj, val);
return;
}
//
// C++: void setMaxDepth(int val)
//
//javadoc: DTrees::setMaxDepth(val)
public void setMaxDepth(int val)
{
setMaxDepth_0(nativeObj, val);
return;
}
//
// C++: void setMinSampleCount(int val)
//
//javadoc: DTrees::setMinSampleCount(val)
public void setMinSampleCount(int val)
{
setMinSampleCount_0(nativeObj, val);
return;
}
//
// C++: void setPriors(Mat val)
//
//javadoc: DTrees::setPriors(val)
public void setPriors(Mat val)
{
setPriors_0(nativeObj, val.nativeObj);
return;
}
//
// C++: void setRegressionAccuracy(float val)
//
//javadoc: DTrees::setRegressionAccuracy(val)
public void setRegressionAccuracy(float val)
{
setRegressionAccuracy_0(nativeObj, val);
return;
}
//
// C++: void setTruncatePrunedTree(bool val)
//
//javadoc: DTrees::setTruncatePrunedTree(val)
public void setTruncatePrunedTree(boolean val)
{
setTruncatePrunedTree_0(nativeObj, val);
return;
}
//
// C++: void setUse1SERule(bool val)
//
//javadoc: DTrees::setUse1SERule(val)
public void setUse1SERule(boolean val)
{
setUse1SERule_0(nativeObj, val);
return;
}
//
// C++: void setUseSurrogates(bool val)
//
//javadoc: DTrees::setUseSurrogates(val)
public void setUseSurrogates(boolean val)
{
setUseSurrogates_0(nativeObj, val);
return;
}
@Override
protected void finalize() throws Throwable {
delete(nativeObj);
}
// C++: Mat getPriors()
private static native long getPriors_0(long nativeObj);
// C++: static Ptr_DTrees create()
private static native long create_0();
// C++: static Ptr_DTrees load(String filepath, String nodeName = String())
private static native long load_0(String filepath, String nodeName);
private static native long load_1(String filepath);
// C++: bool getTruncatePrunedTree()
private static native boolean getTruncatePrunedTree_0(long nativeObj);
// C++: bool getUse1SERule()
private static native boolean getUse1SERule_0(long nativeObj);
// C++: bool getUseSurrogates()
private static native boolean getUseSurrogates_0(long nativeObj);
// C++: float getRegressionAccuracy()
private static native float getRegressionAccuracy_0(long nativeObj);
// C++: int getCVFolds()
private static native int getCVFolds_0(long nativeObj);
// C++: int getMaxCategories()
private static native int getMaxCategories_0(long nativeObj);
// C++: int getMaxDepth()
private static native int getMaxDepth_0(long nativeObj);
// C++: int getMinSampleCount()
private static native int getMinSampleCount_0(long nativeObj);
// C++: void setCVFolds(int val)
private static native void setCVFolds_0(long nativeObj, int val);
// C++: void setMaxCategories(int val)
private static native void setMaxCategories_0(long nativeObj, int val);
// C++: void setMaxDepth(int val)
private static native void setMaxDepth_0(long nativeObj, int val);
// C++: void setMinSampleCount(int val)
private static native void setMinSampleCount_0(long nativeObj, int val);
// C++: void setPriors(Mat val)
private static native void setPriors_0(long nativeObj, long val_nativeObj);
// C++: void setRegressionAccuracy(float val)
private static native void setRegressionAccuracy_0(long nativeObj, float val);
// C++: void setTruncatePrunedTree(bool val)
private static native void setTruncatePrunedTree_0(long nativeObj, boolean val);
// C++: void setUse1SERule(bool val)
private static native void setUse1SERule_0(long nativeObj, boolean val);
// C++: void setUseSurrogates(bool val)
private static native void setUseSurrogates_0(long nativeObj, boolean val);
// native support for java finalize()
private static native void delete(long nativeObj);
}