CalibrateRobertson.java
2.19 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
//
// This file is auto-generated. Please don't modify it!
//
package org.opencv.photo;
import org.opencv.core.Mat;
// C++: class CalibrateRobertson
//javadoc: CalibrateRobertson
public class CalibrateRobertson extends CalibrateCRF {
protected CalibrateRobertson(long addr) { super(addr); }
//
// C++: Mat getRadiance()
//
//javadoc: CalibrateRobertson::getRadiance()
public Mat getRadiance()
{
Mat retVal = new Mat(getRadiance_0(nativeObj));
return retVal;
}
//
// C++: float getThreshold()
//
//javadoc: CalibrateRobertson::getThreshold()
public float getThreshold()
{
float retVal = getThreshold_0(nativeObj);
return retVal;
}
//
// C++: int getMaxIter()
//
//javadoc: CalibrateRobertson::getMaxIter()
public int getMaxIter()
{
int retVal = getMaxIter_0(nativeObj);
return retVal;
}
//
// C++: void setMaxIter(int max_iter)
//
//javadoc: CalibrateRobertson::setMaxIter(max_iter)
public void setMaxIter(int max_iter)
{
setMaxIter_0(nativeObj, max_iter);
return;
}
//
// C++: void setThreshold(float threshold)
//
//javadoc: CalibrateRobertson::setThreshold(threshold)
public void setThreshold(float threshold)
{
setThreshold_0(nativeObj, threshold);
return;
}
@Override
protected void finalize() throws Throwable {
delete(nativeObj);
}
// C++: Mat getRadiance()
private static native long getRadiance_0(long nativeObj);
// C++: float getThreshold()
private static native float getThreshold_0(long nativeObj);
// C++: int getMaxIter()
private static native int getMaxIter_0(long nativeObj);
// C++: void setMaxIter(int max_iter)
private static native void setMaxIter_0(long nativeObj, int max_iter);
// C++: void setThreshold(float threshold)
private static native void setThreshold_0(long nativeObj, float threshold);
// native support for java finalize()
private static native void delete(long nativeObj);
}