[][src]Struct opencv::types::PtrOfMergeDebevec

pub struct PtrOfMergeDebevec { /* fields omitted */ }

Methods

impl PtrOfMergeDebevec[src]

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

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

Trait Implementations

impl Algorithm for PtrOfMergeDebevec[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 MergeDebevec for PtrOfMergeDebevec[src]

fn process_with_response(
    &mut self,
    src: &VectorOfMat,
    dst: &mut Mat,
    times: &Mat,
    response: &Mat
) -> Result<()>
[src]

fn process(
    &mut self,
    src: &VectorOfMat,
    dst: &mut Mat,
    times: &Mat
) -> Result<()>
[src]

impl MergeExposures for PtrOfMergeDebevec[src]

fn process(
    &mut self,
    src: &VectorOfMat,
    dst: &mut Mat,
    times: &Mat,
    response: &Mat
) -> Result<()>
[src]

Merges images. Read more

impl Send for PtrOfMergeDebevec[src]

impl Drop for PtrOfMergeDebevec[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]