• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 
2 //
3 // This file is auto-generated. Please don't modify it!
4 //
5 package org.opencv.photo;
6 
7 import org.opencv.core.Mat;
8 
9 // C++: class CalibrateRobertson
10 //javadoc: CalibrateRobertson
11 public class CalibrateRobertson extends CalibrateCRF {
12 
CalibrateRobertson(long addr)13     protected CalibrateRobertson(long addr) { super(addr); }
14 
15 
16     //
17     // C++:  int getMaxIter()
18     //
19 
20     //javadoc: CalibrateRobertson::getMaxIter()
getMaxIter()21     public  int getMaxIter()
22     {
23 
24         int retVal = getMaxIter_0(nativeObj);
25 
26         return retVal;
27     }
28 
29 
30     //
31     // C++:  void setMaxIter(int max_iter)
32     //
33 
34     //javadoc: CalibrateRobertson::setMaxIter(max_iter)
setMaxIter(int max_iter)35     public  void setMaxIter(int max_iter)
36     {
37 
38         setMaxIter_0(nativeObj, max_iter);
39 
40         return;
41     }
42 
43 
44     //
45     // C++:  float getThreshold()
46     //
47 
48     //javadoc: CalibrateRobertson::getThreshold()
getThreshold()49     public  float getThreshold()
50     {
51 
52         float retVal = getThreshold_0(nativeObj);
53 
54         return retVal;
55     }
56 
57 
58     //
59     // C++:  void setThreshold(float threshold)
60     //
61 
62     //javadoc: CalibrateRobertson::setThreshold(threshold)
setThreshold(float threshold)63     public  void setThreshold(float threshold)
64     {
65 
66         setThreshold_0(nativeObj, threshold);
67 
68         return;
69     }
70 
71 
72     //
73     // C++:  Mat getRadiance()
74     //
75 
76     //javadoc: CalibrateRobertson::getRadiance()
getRadiance()77     public  Mat getRadiance()
78     {
79 
80         Mat retVal = new Mat(getRadiance_0(nativeObj));
81 
82         return retVal;
83     }
84 
85 
86     @Override
finalize()87     protected void finalize() throws Throwable {
88         delete(nativeObj);
89     }
90 
91 
92 
93     // C++:  int getMaxIter()
getMaxIter_0(long nativeObj)94     private static native int getMaxIter_0(long nativeObj);
95 
96     // C++:  void setMaxIter(int max_iter)
setMaxIter_0(long nativeObj, int max_iter)97     private static native void setMaxIter_0(long nativeObj, int max_iter);
98 
99     // C++:  float getThreshold()
getThreshold_0(long nativeObj)100     private static native float getThreshold_0(long nativeObj);
101 
102     // C++:  void setThreshold(float threshold)
setThreshold_0(long nativeObj, float threshold)103     private static native void setThreshold_0(long nativeObj, float threshold);
104 
105     // C++:  Mat getRadiance()
getRadiance_0(long nativeObj)106     private static native long getRadiance_0(long nativeObj);
107 
108     // native support for java finalize()
delete(long nativeObj)109     private static native void delete(long nativeObj);
110 
111 }
112