Struct opencv::dnn::TextDetectionModel  
source · pub struct TextDetectionModel { /* private fields */ }Expand description
Base class for text detection networks
Trait Implementations§
source§impl Boxed for TextDetectionModel
 
impl Boxed for TextDetectionModel
source§impl Drop for TextDetectionModel
 
impl Drop for TextDetectionModel
source§impl From<TextDetectionModel> for Model
 
impl From<TextDetectionModel> for Model
source§fn from(s: TextDetectionModel) -> Self
 
fn from(s: TextDetectionModel) -> Self
Converts to this type from the input type.
source§impl From<TextDetectionModel_DB> for TextDetectionModel
 
impl From<TextDetectionModel_DB> for TextDetectionModel
source§fn from(s: TextDetectionModel_DB) -> Self
 
fn from(s: TextDetectionModel_DB) -> Self
Converts to this type from the input type.
source§impl From<TextDetectionModel_EAST> for TextDetectionModel
 
impl From<TextDetectionModel_EAST> for TextDetectionModel
source§fn from(s: TextDetectionModel_EAST) -> Self
 
fn from(s: TextDetectionModel_EAST) -> Self
Converts to this type from the input type.
source§impl ModelTrait for TextDetectionModel
 
impl ModelTrait for TextDetectionModel
fn as_raw_mut_Model(&mut self) -> *mut c_void
source§fn set_input_size_1(&mut self, width: i32, height: i32) -> Result<Model>
 
fn set_input_size_1(&mut self, width: i32, height: i32) -> Result<Model>
Set input size for frame. Read more
source§fn set_input_mean(&mut self, mean: Scalar) -> Result<Model>
 
fn set_input_mean(&mut self, mean: Scalar) -> Result<Model>
Set mean value for frame. Read more
source§fn set_input_scale(&mut self, scale: f64) -> Result<Model>
 
fn set_input_scale(&mut self, scale: f64) -> Result<Model>
Set scalefactor value for frame. Read more
source§fn set_input_swap_rb(&mut self, swap_rb: bool) -> Result<Model>
 
fn set_input_swap_rb(&mut self, swap_rb: bool) -> Result<Model>
Set flag swapRB for frame. Read more
source§fn set_input_params(
    &mut self,
    scale: f64,
    size: Size,
    mean: Scalar,
    swap_rb: bool,
    crop: bool
) -> Result<()>
 
fn set_input_params(
    &mut self,
    scale: f64,
    size: Size,
    mean: Scalar,
    swap_rb: bool,
    crop: bool
) -> Result<()>
Set preprocessing parameters for frame. Read more
fn get_network__1(&mut self) -> Result<Net>
source§impl ModelTraitConst for TextDetectionModel
 
impl ModelTraitConst for TextDetectionModel
fn as_raw_Model(&self) -> *const c_void
source§fn predict(
    &self,
    frame: &dyn ToInputArray,
    outs: &mut dyn ToOutputArray
) -> Result<()>
 
fn predict(
    &self,
    frame: &dyn ToInputArray,
    outs: &mut dyn ToOutputArray
) -> Result<()>
Given the @p input frame, create input blob, run net and return the output @p blobs. Read more
fn get_network_(&self) -> Result<Net>
source§impl TextDetectionModelTrait for TextDetectionModel
 
impl TextDetectionModelTrait for TextDetectionModel
fn as_raw_mut_TextDetectionModel(&mut self) -> *mut c_void
source§impl TextDetectionModelTraitConst for TextDetectionModel
 
impl TextDetectionModelTraitConst for TextDetectionModel
fn as_raw_TextDetectionModel(&self) -> *const c_void
source§fn detect_with_confidences(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<Vector<Point>>,
    confidences: &mut Vector<f32>
) -> Result<()>
 
fn detect_with_confidences(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<Vector<Point>>,
    confidences: &mut Vector<f32>
) -> Result<()>
Performs detection Read more
source§fn detect(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<Vector<Point>>
) -> Result<()>
 
fn detect(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<Vector<Point>>
) -> Result<()>
Performs detection Read more
source§fn detect_text_rectangles(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<RotatedRect>,
    confidences: &mut Vector<f32>
) -> Result<()>
 
fn detect_text_rectangles(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<RotatedRect>,
    confidences: &mut Vector<f32>
) -> Result<()>
Performs detection Read more
source§fn detect_text_rectangles_1(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<RotatedRect>
) -> Result<()>
 
fn detect_text_rectangles_1(
    &self,
    frame: &dyn ToInputArray,
    detections: &mut Vector<RotatedRect>
) -> Result<()>
Performs detection Read more