[][src]Trait opencv::dnn::DictValueTrait

pub trait DictValueTrait {
    pub fn as_raw_DictValue(&self) -> *const c_void;
pub fn as_raw_mut_DictValue(&mut self) -> *mut c_void; pub fn get_str(&self, idx: i32) -> Result<String> { ... }
pub fn get_f64(&self, idx: i32) -> Result<f64> { ... }
pub fn get_i32(&self, idx: i32) -> Result<i32> { ... }
pub fn get_i64(&self, idx: i32) -> Result<i64> { ... }
pub fn size(&self) -> Result<i32> { ... }
pub fn is_int(&self) -> Result<bool> { ... }
pub fn is_string(&self) -> Result<bool> { ... }
pub fn is_real(&self) -> Result<bool> { ... }
pub fn get_int_value(&self, idx: i32) -> Result<i32> { ... }
pub fn get_real_value(&self, idx: i32) -> Result<f64> { ... }
pub fn get_string_value(&self, idx: i32) -> Result<String> { ... } }

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.

Required methods

Loading content...

Provided methods

pub fn get_str(&self, idx: i32) -> Result<String>[src]

pub fn get_f64(&self, idx: i32) -> Result<f64>[src]

pub fn get_i32(&self, idx: i32) -> Result<i32>[src]

pub fn get_i64(&self, idx: i32) -> Result<i64>[src]

pub fn size(&self) -> Result<i32>[src]

pub fn is_int(&self) -> Result<bool>[src]

pub fn is_string(&self) -> Result<bool>[src]

pub fn is_real(&self) -> Result<bool>[src]

pub fn get_int_value(&self, idx: i32) -> Result<i32>[src]

pub fn get_real_value(&self, idx: i32) -> Result<f64>[src]

pub fn get_string_value(&self, idx: i32) -> Result<String>[src]

Loading content...

Implementors

impl DictValueTrait for DictValue[src]

Loading content...