Struct opencv::rgbd::RgbdFrame [−][src]
Object that contains a frame data.
Implementations
impl RgbdFrame[src]
pub fn as_raw_RgbdFrame(&self) -> *const c_void[src]
pub fn as_raw_mut_RgbdFrame(&mut self) -> *mut c_void[src]
impl RgbdFrame[src]
pub fn default() -> Result<RgbdFrame>[src]
pub fn new(
image: &Mat,
depth: &Mat,
mask: &Mat,
normals: &Mat,
id: i32
) -> Result<RgbdFrame>[src]
image: &Mat,
depth: &Mat,
mask: &Mat,
normals: &Mat,
id: i32
) -> Result<RgbdFrame>
C++ default parameters
- mask: Mat()
- normals: Mat()
- id: -1
pub fn create(
image: &Mat,
depth: &Mat,
mask: &Mat,
normals: &Mat,
id: i32
) -> Result<Ptr<RgbdFrame>>[src]
image: &Mat,
depth: &Mat,
mask: &Mat,
normals: &Mat,
id: i32
) -> Result<Ptr<RgbdFrame>>
C++ default parameters
- image: Mat()
- depth: Mat()
- mask: Mat()
- normals: Mat()
- id: -1
Trait Implementations
impl Boxed for RgbdFrame[src]
unsafe fn from_raw(ptr: *mut c_void) -> Self[src]
fn into_raw(self) -> *mut c_void[src]
fn as_raw(&self) -> *const c_void[src]
fn as_raw_mut(&mut self) -> *mut c_void[src]
impl Drop for RgbdFrame[src]
impl RgbdFrameTrait for RgbdFrame[src]
fn as_raw_RgbdFrame(&self) -> *const c_void[src]
fn as_raw_mut_RgbdFrame(&mut self) -> *mut c_void[src]
fn id(&self) -> i32[src]
fn set_id(&mut self, val: i32)[src]
fn image(&mut self) -> Mat[src]
fn set_image(&mut self, val: Mat)[src]
fn depth(&mut self) -> Mat[src]
fn set_depth(&mut self, val: Mat)[src]
fn mask(&mut self) -> Mat[src]
fn set_mask(&mut self, val: Mat)[src]
fn normals(&mut self) -> Mat[src]
fn set_normals(&mut self, val: Mat)[src]
fn release(&mut self) -> Result<()>[src]
impl Send for RgbdFrame[src]
Auto Trait Implementations
impl RefUnwindSafe for RgbdFrame
impl !Sync for RgbdFrame
impl Unpin for RgbdFrame
impl UnwindSafe for RgbdFrame
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> From<T> for T[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,