[][src]Struct opencv::viz::WTrajectorySpheres

pub struct WTrajectorySpheres { /* fields omitted */ }

This 3D Widget represents a trajectory using spheres and lines

where spheres represent the positions of the camera, and lines represent the direction from previous position to the current. :

Methods

impl WTrajectorySpheres[src]

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

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

impl WTrajectorySpheres[src]

pub fn new(
    path: &dyn ToInputArray,
    line_length: f64,
    radius: f64,
    from: &Color,
    to: &Color
) -> Result<WTrajectorySpheres>
[src]

Constructs a WTrajectorySpheres.

Parameters

  • path: List of poses on a trajectory. Takes std::vector<Affine<T>> with T == [float | double]
  • line_length: Max length of the lines which point to previous position
  • radius: Radius of the spheres.
  • from: Color for first sphere.
  • to: Color for last sphere. Intermediate spheres will have interpolated color.

C++ default parameters

  • line_length: 0.05
  • radius: 0.007
  • from: Color::red()
  • to: Color::white()

Trait Implementations

impl WidgetTrait for WTrajectorySpheres[src]

impl Widget3DTrait for WTrajectorySpheres[src]

impl Send for WTrajectorySpheres[src]

impl Drop for WTrajectorySpheres[src]

Auto Trait Implementations

Blanket Implementations

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

impl<T> From<T> for 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]