Struct opencv::stitching::PyRotationWarper
source · pub struct PyRotationWarper { /* private fields */ }
Implementations§
source§impl PyRotationWarper
impl PyRotationWarper
pub fn new(typ: &str, scale: f32) -> Result<PyRotationWarper>
pub fn default() -> Result<PyRotationWarper>
Trait Implementations§
source§impl Boxed for PyRotationWarper
impl Boxed for PyRotationWarper
source§impl Debug for PyRotationWarper
impl Debug for PyRotationWarper
source§impl Drop for PyRotationWarper
impl Drop for PyRotationWarper
source§impl PyRotationWarperTrait for PyRotationWarper
impl PyRotationWarperTrait for PyRotationWarper
fn as_raw_mut_PyRotationWarper(&mut self) -> *mut c_void
source§fn warp_point(
&mut self,
pt: Point2f,
k: &impl ToInputArray,
r: &impl ToInputArray
) -> Result<Point2f>
fn warp_point( &mut self, pt: Point2f, k: &impl ToInputArray, r: &impl ToInputArray ) -> Result<Point2f>
Projects the image point. Read more
fn warp_point_backward( &mut self, pt: Point2f, k: &impl ToInputArray, r: &impl ToInputArray ) -> Result<Point2f>
source§fn build_maps(
&mut self,
src_size: Size,
k: &impl ToInputArray,
r: &impl ToInputArray,
xmap: &mut impl ToOutputArray,
ymap: &mut impl ToOutputArray
) -> Result<Rect>
fn build_maps( &mut self, src_size: Size, k: &impl ToInputArray, r: &impl ToInputArray, xmap: &mut impl ToOutputArray, ymap: &mut impl ToOutputArray ) -> Result<Rect>
Builds the projection maps according to the given camera data. Read more
source§fn warp(
&mut self,
src: &impl ToInputArray,
k: &impl ToInputArray,
r: &impl ToInputArray,
interp_mode: i32,
border_mode: i32,
dst: &mut impl ToOutputArray
) -> Result<Point>
fn warp( &mut self, src: &impl ToInputArray, k: &impl ToInputArray, r: &impl ToInputArray, interp_mode: i32, border_mode: i32, dst: &mut impl ToOutputArray ) -> Result<Point>
Projects the image. Read more
source§fn warp_backward(
&mut self,
src: &impl ToInputArray,
k: &impl ToInputArray,
r: &impl ToInputArray,
interp_mode: i32,
border_mode: i32,
dst_size: Size,
dst: &mut impl ToOutputArray
) -> Result<()>
fn warp_backward( &mut self, src: &impl ToInputArray, k: &impl ToInputArray, r: &impl ToInputArray, interp_mode: i32, border_mode: i32, dst_size: Size, dst: &mut impl ToOutputArray ) -> Result<()>
Projects the image backward. Read more
source§fn warp_roi(
&mut self,
src_size: Size,
k: &impl ToInputArray,
r: &impl ToInputArray
) -> Result<Rect>
fn warp_roi( &mut self, src_size: Size, k: &impl ToInputArray, r: &impl ToInputArray ) -> Result<Rect>
Parameters Read more
fn set_scale(&mut self, unnamed: f32) -> Result<()>
impl Send for PyRotationWarper
Auto Trait Implementations§
impl RefUnwindSafe for PyRotationWarper
impl !Sync for PyRotationWarper
impl Unpin for PyRotationWarper
impl UnwindSafe for PyRotationWarper
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more