[][src]Struct opencv::viz::WImage3D

pub struct WImage3D { /* fields omitted */ }

This 3D Widget represents an image in 3D space. :

Methods

impl WImage3D[src]

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

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

impl WImage3D[src]

pub fn new(image: &dyn ToInputArray, size: Size2d) -> Result<WImage3D>[src]

Constructs an WImage3D.

Parameters

  • image: BGR or Gray-Scale image.
  • size: Size of the image.

pub fn new_1(
    image: &dyn ToInputArray,
    size: Size2d,
    center: Vec3d,
    normal: Vec3d,
    up_vector: Vec3d
) -> Result<WImage3D>
[src]

Constructs an WImage3D.

Parameters

  • image: BGR or Gray-Scale image.
  • size: Size of the image.
  • center: Position of the image.
  • normal: Normal of the plane that represents the image.
  • up_vector: Determines orientation of the image.

pub fn set_image(&mut self, image: &dyn ToInputArray) -> Result<()>[src]

Sets the image content of the widget.

Parameters

  • image: BGR or Gray-Scale image.

pub fn set_size(&mut self, size: Size) -> Result<()>[src]

Sets the image size of the widget.

Parameters

  • size: the new size of the image.

Trait Implementations

impl Drop for WImage3D[src]

impl Send for WImage3D[src]

impl Widget3DTrait for WImage3D[src]

impl WidgetTrait for WImage3D[src]

Auto Trait Implementations

Blanket Implementations

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

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

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

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.