opencv::stitching

Struct Detail_BlocksChannelsCompensator

Source
pub struct Detail_BlocksChannelsCompensator { /* private fields */ }
Expand description

Exposure compensator which tries to remove exposure related artifacts by adjusting image block on each channel.

Implementations§

Source§

impl Detail_BlocksChannelsCompensator

Source

pub fn new( bl_width: i32, bl_height: i32, nr_feeds: i32, ) -> Result<Detail_BlocksChannelsCompensator>

§C++ default parameters
  • bl_width: 32
  • bl_height: 32
  • nr_feeds: 1
Source

pub fn new_def() -> Result<Detail_BlocksChannelsCompensator>

§Note

This alternative version of [new] function uses the following default values for its arguments:

  • bl_width: 32
  • bl_height: 32
  • nr_feeds: 1

Trait Implementations§

Source§

impl Boxed for Detail_BlocksChannelsCompensator

Source§

unsafe fn from_raw( ptr: <Detail_BlocksChannelsCompensator as OpenCVFromExtern>::ExternReceive, ) -> Self

Wrap the specified raw pointer Read more
Source§

fn into_raw( self, ) -> <Detail_BlocksChannelsCompensator as OpenCVTypeExternContainer>::ExternSendMut

Return the underlying raw pointer while consuming this wrapper. Read more
Source§

fn as_raw( &self, ) -> <Detail_BlocksChannelsCompensator as OpenCVTypeExternContainer>::ExternSend

Return the underlying raw pointer. Read more
Source§

fn as_raw_mut( &mut self, ) -> <Detail_BlocksChannelsCompensator as OpenCVTypeExternContainer>::ExternSendMut

Return the underlying mutable raw pointer Read more
Source§

impl Debug for Detail_BlocksChannelsCompensator

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Detail_BlocksChannelsCompensatorTrait for Detail_BlocksChannelsCompensator

Source§

fn as_raw_mut_Detail_BlocksChannelsCompensator(&mut self) -> *mut c_void

Source§

fn feed( &mut self, corners: &Vector<Point>, images: &Vector<UMat>, masks: &Vector<Tuple<(UMat, u8)>>, ) -> Result<()>

Source§

impl Detail_BlocksChannelsCompensatorTraitConst for Detail_BlocksChannelsCompensator

Source§

impl Detail_BlocksCompensatorTrait for Detail_BlocksChannelsCompensator

Source§

fn as_raw_mut_Detail_BlocksCompensator(&mut self) -> *mut c_void

Source§

fn apply( &mut self, index: i32, corner: Point, image: &mut impl ToInputOutputArray, mask: &impl ToInputArray, ) -> Result<()>

Source§

fn get_mat_gains(&mut self, umv: &mut Vector<Mat>) -> Result<()>

Source§

fn set_mat_gains(&mut self, umv: &mut Vector<Mat>) -> Result<()>

Source§

fn set_nr_feeds(&mut self, nr_feeds: i32) -> Result<()>

Source§

fn get_nr_feeds(&mut self) -> Result<i32>

Source§

fn set_similarity_threshold(&mut self, similarity_threshold: f64) -> Result<()>

Source§

fn set_block_size(&mut self, width: i32, height: i32) -> Result<()>

Source§

fn set_block_size_1(&mut self, size: Size) -> Result<()>

Source§

fn set_nr_gains_filtering_iterations( &mut self, nr_iterations: i32, ) -> Result<()>

Source§

impl Detail_BlocksCompensatorTraitConst for Detail_BlocksChannelsCompensator

Source§

impl Detail_ExposureCompensatorTrait for Detail_BlocksChannelsCompensator

Source§

fn as_raw_mut_Detail_ExposureCompensator(&mut self) -> *mut c_void

Source§

fn feed( &mut self, corners: &Vector<Point>, images: &Vector<UMat>, masks: &Vector<UMat>, ) -> Result<()>

Parameters Read more
Source§

fn feed_1( &mut self, corners: &Vector<Point>, images: &Vector<UMat>, masks: &Vector<Tuple<(UMat, u8)>>, ) -> Result<()>

Parameters Read more
Source§

fn apply( &mut self, index: i32, corner: Point, image: &mut impl ToInputOutputArray, mask: &impl ToInputArray, ) -> Result<()>

Compensate exposure in the specified image. Read more
Source§

fn get_mat_gains(&mut self, unnamed: &mut Vector<Mat>) -> Result<()>

Source§

fn set_mat_gains(&mut self, unnamed: &mut Vector<Mat>) -> Result<()>

Source§

fn set_update_gain(&mut self, b: bool) -> Result<()>

Source§

fn get_update_gain(&mut self) -> Result<bool>

Source§

impl Detail_ExposureCompensatorTraitConst for Detail_BlocksChannelsCompensator

Source§

impl Drop for Detail_BlocksChannelsCompensator

Source§

fn drop(&mut self)

Executes the destructor for this type. Read more
Source§

impl From<Detail_BlocksChannelsCompensator> for Detail_BlocksCompensator

Source§

fn from(s: Detail_BlocksChannelsCompensator) -> Self

Converts to this type from the input type.
Source§

impl From<Detail_BlocksChannelsCompensator> for Detail_ExposureCompensator

Source§

fn from(s: Detail_BlocksChannelsCompensator) -> Self

Converts to this type from the input type.
Source§

impl TryFrom<Detail_BlocksCompensator> for Detail_BlocksChannelsCompensator

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(s: Detail_BlocksCompensator) -> Result<Self>

Performs the conversion.
Source§

impl TryFrom<Detail_ExposureCompensator> for Detail_BlocksChannelsCompensator

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(s: Detail_ExposureCompensator) -> Result<Self>

Performs the conversion.
Source§

impl Send for Detail_BlocksChannelsCompensator

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<Mat> ModifyInplace for Mat
where Mat: Boxed,

Source§

unsafe fn modify_inplace<Res>( &mut self, f: impl FnOnce(&Mat, &mut Mat) -> Res, ) -> Res

Helper function to call OpenCV functions that allow in-place modification of a Mat or another similar object. By passing a mutable reference to the Mat to this function your closure will get called with the read reference and a write references to the same Mat. This is unsafe in a general case as it leads to having non-exclusive mutable access to the internal data, but it can be useful for some performance sensitive operations. One example of an OpenCV function that allows such in-place modification is imgproc::threshold. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.