[][src]Struct opencv::types::PtrOfPlot2d

pub struct PtrOfPlot2d { /* fields omitted */ }

Methods

impl PtrOfPlot2d[src]

pub fn as_raw_PtrOfPlot2d(&self) -> *mut c_void[src]

pub unsafe fn from_raw_ptr(ptr: *mut c_void) -> Self[src]

Trait Implementations

impl Algorithm for PtrOfPlot2d[src]

fn clear(&mut self) -> Result<()>[src]

Clears the algorithm state

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

Returns true if the Algorithm is empty (e.g. in the very beginning or after unsuccessful read

fn save(&self, filename: &str) -> Result<()>[src]

Saves the algorithm to a file. In order to make this method work, the derived class must implement Algorithm::write(FileStorage& fs). Read more

fn get_default_name(&self) -> Result<String>[src]

Returns the algorithm string identifier. This string is used as top level xml/yml node tag when the object is saved to a file or string. Read more

impl Plot2d for PtrOfPlot2d[src]

fn set_min_x(&mut self, _plot_min_x: f64) -> Result<()>[src]

fn set_min_y(&mut self, _plot_min_y: f64) -> Result<()>[src]

fn set_max_x(&mut self, _plot_max_x: f64) -> Result<()>[src]

fn set_max_y(&mut self, _plot_max_y: f64) -> Result<()>[src]

fn set_plot_line_width(&mut self, _plot_line_width: i32) -> Result<()>[src]

fn set_need_plot_line(&mut self, _need_plot_line: bool) -> Result<()>[src]

Switches data visualization mode Read more

fn set_plot_line_color(&mut self, _plot_line_color: Scalar) -> Result<()>[src]

fn set_plot_background_color(
    &mut self,
    _plot_background_color: Scalar
) -> Result<()>
[src]

fn set_plot_axis_color(&mut self, _plot_axis_color: Scalar) -> Result<()>[src]

fn set_plot_grid_color(&mut self, _plot_grid_color: Scalar) -> Result<()>[src]

fn set_plot_text_color(&mut self, _plot_text_color: Scalar) -> Result<()>[src]

fn set_plot_size(
    &mut self,
    _plot_size_width: i32,
    _plot_size_height: i32
) -> Result<()>
[src]

fn set_show_grid(&mut self, need_show_grid: bool) -> Result<()>[src]

fn set_show_text(&mut self, need_show_text: bool) -> Result<()>[src]

fn set_grid_lines_number(&mut self, grid_lines_number: i32) -> Result<()>[src]

fn set_invert_orientation(&mut self, _invert_orientation: bool) -> Result<()>[src]

fn set_point_idx_to_print(&mut self, point_idx: i32) -> Result<()>[src]

Sets the index of a point which coordinates will be printed on the top left corner of the plot (if ShowText flag is true). Read more

fn render(&mut self, _plot_result: &mut Mat) -> Result<()>[src]

impl Send for PtrOfPlot2d[src]

impl Drop for PtrOfPlot2d[src]

Auto Trait Implementations

Blanket Implementations

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]