Struct opencv::stitching::PyRotationWarper
source · [−]pub struct PyRotationWarper { /* private fields */ }
Implementations
sourceimpl PyRotationWarper
impl PyRotationWarper
pub fn new(typ: &str, scale: f32) -> Result<PyRotationWarper>
pub fn default() -> Result<PyRotationWarper>
Trait Implementations
sourceimpl Boxed for PyRotationWarper
impl Boxed for PyRotationWarper
sourceimpl Drop for PyRotationWarper
impl Drop for PyRotationWarper
sourceimpl PyRotationWarperTrait for PyRotationWarper
impl PyRotationWarperTrait for PyRotationWarper
fn as_raw_mut_PyRotationWarper(&mut self) -> *mut c_void
sourcefn 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>
sourcefn 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
sourcefn 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
sourcefn 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
sourcefn 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
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more