[−][src]Struct opencv::text::ERStat
The ERStat structure represents a class-specific Extremal Region (ER).
An ER is a 4-connected set of pixels with all its grey-level values smaller than the values in its outer boundary. A class-specific ER is selected (using a classifier) from all the ER's in the component tree of the image. :
Implementations
impl ERStat[src]
pub fn as_raw_ERStat(&self) -> *const c_void[src]
pub fn as_raw_mut_ERStat(&mut self) -> *mut c_void[src]
impl ERStat[src]
Trait Implementations
impl Boxed for ERStat[src]
unsafe fn from_raw(ptr: *mut c_void) -> Self[src]
fn into_raw(self) -> *mut c_void[src]
fn as_raw(&self) -> *const c_void[src]
fn as_raw_mut(&mut self) -> *mut c_void[src]
impl Drop for ERStat[src]
impl ERStatTrait for ERStat[src]
fn as_raw_ERStat(&self) -> *const c_void[src]
fn as_raw_mut_ERStat(&mut self) -> *mut c_void[src]
fn pixel(&self) -> i32[src]
fn set_pixel(&mut self, val: i32)[src]
fn level(&self) -> i32[src]
fn set_level(&mut self, val: i32)[src]
fn area(&self) -> i32[src]
fn set_area(&mut self, val: i32)[src]
fn perimeter(&self) -> i32[src]
fn set_perimeter(&mut self, val: i32)[src]
fn euler(&self) -> i32[src]
fn set_euler(&mut self, val: i32)[src]
fn rect(&self) -> Rect[src]
fn set_rect(&mut self, val: Rect)[src]
fn raw_moments(&mut self) -> &mut [f64; 2][src]
fn central_moments(&mut self) -> &mut [f64; 3][src]
fn med_crossings(&self) -> f32[src]
fn set_med_crossings(&mut self, val: f32)[src]
fn hole_area_ratio(&self) -> f32[src]
fn set_hole_area_ratio(&mut self, val: f32)[src]
fn convex_hull_ratio(&self) -> f32[src]
fn set_convex_hull_ratio(&mut self, val: f32)[src]
fn num_inflexion_points(&self) -> f32[src]
fn set_num_inflexion_points(&mut self, val: f32)[src]
fn probability(&self) -> f64[src]
fn set_probability(&mut self, val: f64)[src]
fn parent(&mut self) -> ERStat[src]
fn set_parent(&mut self, val: &mut ERStat)[src]
fn child(&mut self) -> ERStat[src]
fn set_child(&mut self, val: &mut ERStat)[src]
fn next(&mut self) -> ERStat[src]
fn set_next(&mut self, val: &mut ERStat)[src]
fn prev(&mut self) -> ERStat[src]
fn set_prev(&mut self, val: &mut ERStat)[src]
fn local_maxima(&self) -> bool[src]
fn set_local_maxima(&mut self, val: bool)[src]
fn max_probability_ancestor(&mut self) -> ERStat[src]
fn set_max_probability_ancestor(&mut self, val: &mut ERStat)[src]
fn min_probability_ancestor(&mut self) -> ERStat[src]
fn set_min_probability_ancestor(&mut self, val: &mut ERStat)[src]
impl Send for ERStat[src]
impl VectorElement for ERStat where
Vector<ERStat>: VectorExtern<ERStat>, [src]
Vector<ERStat>: VectorExtern<ERStat>,
Auto Trait Implementations
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,