[][src]Struct opencv::viz::WMesh

pub struct WMesh { /* fields omitted */ }

Constructs a WMesh.

Parameters

  • mesh: Mesh object that will be displayed.
  • cloud: Points of the mesh object.
  • polygons: Points of the mesh object.
  • colors: Point colors.
  • normals: Point normals.

Methods

impl WMesh[src]

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

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

impl WMesh[src]

pub fn new(mesh: &Mesh) -> Result<WMesh>[src]

pub fn new_1(
    cloud: &dyn ToInputArray,
    polygons: &dyn ToInputArray,
    colors: &dyn ToInputArray,
    normals: &dyn ToInputArray
) -> Result<WMesh>
[src]

C++ default parameters

  • colors: noArray()
  • normals: noArray()

Trait Implementations

impl WidgetTrait for WMesh[src]

impl Widget3DTrait for WMesh[src]

impl Send for WMesh[src]

impl Drop for WMesh[src]

Auto Trait Implementations

impl !Sync for WMesh

impl Unpin for WMesh

impl UnwindSafe for WMesh

impl RefUnwindSafe for WMesh

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]