Package org.opencv.dnn
Class DictValue
- java.lang.Object
-
- org.opencv.dnn.DictValue
-
public class DictValue extends java.lang.Object
This struct stores the scalar value (or array) of one of the following type: double, cv::String or int64. TODO: Maybe int64 is useless because double type exactly stores at least 2^52 integers.
-
-
Field Summary
Fields Modifier and Type Field Description protected long
nativeObj
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static DictValue
__fromPtr__(long addr)
protected void
finalize()
int
getIntValue()
int
getIntValue(int idx)
long
getNativeObjAddr()
double
getRealValue()
double
getRealValue(int idx)
java.lang.String
getStringValue()
java.lang.String
getStringValue(int idx)
boolean
isInt()
boolean
isReal()
boolean
isString()
-
-
-
Method Detail
-
getNativeObjAddr
public long getNativeObjAddr()
-
__fromPtr__
public static DictValue __fromPtr__(long addr)
-
isInt
public boolean isInt()
-
isString
public boolean isString()
-
isReal
public boolean isReal()
-
getIntValue
public int getIntValue(int idx)
-
getIntValue
public int getIntValue()
-
getRealValue
public double getRealValue(int idx)
-
getRealValue
public double getRealValue()
-
getStringValue
public java.lang.String getStringValue(int idx)
-
getStringValue
public java.lang.String getStringValue()
-
finalize
protected void finalize() throws java.lang.Throwable
- Overrides:
finalize
in classjava.lang.Object
- Throws:
java.lang.Throwable
-
-