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 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: &dyn ToInputArray,
r: &dyn ToInputArray
) -> Result<Point2f>
fn warp_point( &mut self, pt: Point2f, k: &dyn ToInputArray, r: &dyn ToInputArray ) -> Result<Point2f>
Projects the image point. Read more
fn warp_point_backward( &mut self, pt: Point2f, k: &dyn ToInputArray, r: &dyn ToInputArray ) -> Result<Point2f>
source§fn build_maps(
&mut self,
src_size: Size,
k: &dyn ToInputArray,
r: &dyn ToInputArray,
xmap: &mut dyn ToOutputArray,
ymap: &mut dyn ToOutputArray
) -> Result<Rect>
fn build_maps( &mut self, src_size: Size, k: &dyn ToInputArray, r: &dyn ToInputArray, xmap: &mut dyn ToOutputArray, ymap: &mut dyn ToOutputArray ) -> Result<Rect>
Builds the projection maps according to the given camera data. Read more
source§fn warp(
&mut self,
src: &dyn ToInputArray,
k: &dyn ToInputArray,
r: &dyn ToInputArray,
interp_mode: i32,
border_mode: i32,
dst: &mut dyn ToOutputArray
) -> Result<Point>
fn warp( &mut self, src: &dyn ToInputArray, k: &dyn ToInputArray, r: &dyn ToInputArray, interp_mode: i32, border_mode: i32, dst: &mut dyn ToOutputArray ) -> Result<Point>
Projects the image. Read more
source§fn warp_backward(
&mut self,
src: &dyn ToInputArray,
k: &dyn ToInputArray,
r: &dyn ToInputArray,
interp_mode: i32,
border_mode: i32,
dst_size: Size,
dst: &mut dyn ToOutputArray
) -> Result<()>
fn warp_backward( &mut self, src: &dyn ToInputArray, k: &dyn ToInputArray, r: &dyn ToInputArray, interp_mode: i32, border_mode: i32, dst_size: Size, dst: &mut dyn ToOutputArray ) -> Result<()>
Projects the image backward. Read more
source§fn warp_roi(
&mut self,
src_size: Size,
k: &dyn ToInputArray,
r: &dyn ToInputArray
) -> Result<Rect>
fn warp_roi( &mut self, src_size: Size, k: &dyn ToInputArray, r: &dyn 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