Struct opencv::dnn::TextDetectionModel
source · [−]pub struct TextDetectionModel { /* private fields */ }Expand description
Base class for text detection networks
Trait Implementations
sourceimpl Boxed for TextDetectionModel
impl Boxed for TextDetectionModel
sourceimpl Drop for TextDetectionModel
impl Drop for TextDetectionModel
sourceimpl From<TextDetectionModel> for Model
impl From<TextDetectionModel> for Model
sourcefn from(s: TextDetectionModel) -> Self
fn from(s: TextDetectionModel) -> Self
Converts to this type from the input type.
sourceimpl From<TextDetectionModel_DB> for TextDetectionModel
impl From<TextDetectionModel_DB> for TextDetectionModel
sourcefn from(s: TextDetectionModel_DB) -> Self
fn from(s: TextDetectionModel_DB) -> Self
Converts to this type from the input type.
sourceimpl From<TextDetectionModel_EAST> for TextDetectionModel
impl From<TextDetectionModel_EAST> for TextDetectionModel
sourcefn from(s: TextDetectionModel_EAST) -> Self
fn from(s: TextDetectionModel_EAST) -> Self
Converts to this type from the input type.
sourceimpl ModelTrait for TextDetectionModel
impl ModelTrait for TextDetectionModel
fn as_raw_mut_Model(&mut self) -> *mut c_void
sourcefn 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
sourcefn 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
sourcefn 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
sourcefn 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
sourcefn 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>
sourceimpl ModelTraitConst for TextDetectionModel
impl ModelTraitConst for TextDetectionModel
fn as_raw_Model(&self) -> *const c_void
sourcefn 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>
sourceimpl TextDetectionModelTrait for TextDetectionModel
impl TextDetectionModelTrait for TextDetectionModel
fn as_raw_mut_TextDetectionModel(&mut self) -> *mut c_void
sourceimpl TextDetectionModelTraitConst for TextDetectionModel
impl TextDetectionModelTraitConst for TextDetectionModel
fn as_raw_TextDetectionModel(&self) -> *const c_void
sourcefn 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
sourcefn 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
sourcefn 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
sourcefn 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
impl Send for TextDetectionModel
Auto Trait Implementations
impl RefUnwindSafe for TextDetectionModel
impl !Sync for TextDetectionModel
impl Unpin for TextDetectionModel
impl UnwindSafe for TextDetectionModel
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more