pub struct Detail_StereographicWarper { /* private fields */ }
Implementations§
Source§impl Detail_StereographicWarper
impl Detail_StereographicWarper
pub fn new(scale: f32) -> Result<Detail_StereographicWarper>
Trait Implementations§
Source§impl Boxed for Detail_StereographicWarper
impl Boxed for Detail_StereographicWarper
Source§unsafe fn from_raw(
ptr: <Detail_StereographicWarper as OpenCVFromExtern>::ExternReceive,
) -> Self
unsafe fn from_raw( ptr: <Detail_StereographicWarper as OpenCVFromExtern>::ExternReceive, ) -> Self
Wrap the specified raw pointer Read more
Source§fn into_raw(
self,
) -> <Detail_StereographicWarper as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw( self, ) -> <Detail_StereographicWarper as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
Source§fn as_raw(
&self,
) -> <Detail_StereographicWarper as OpenCVTypeExternContainer>::ExternSend
fn as_raw( &self, ) -> <Detail_StereographicWarper as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
Source§fn as_raw_mut(
&mut self,
) -> <Detail_StereographicWarper as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut( &mut self, ) -> <Detail_StereographicWarper as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
Source§impl Debug for Detail_StereographicWarper
impl Debug for Detail_StereographicWarper
Source§impl Detail_RotationWarperTrait for Detail_StereographicWarper
impl Detail_RotationWarperTrait for Detail_StereographicWarper
fn as_raw_mut_Detail_RotationWarper(&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<()>
Source§impl Detail_StereographicWarperTrait for Detail_StereographicWarper
impl Detail_StereographicWarperTrait for Detail_StereographicWarper
fn as_raw_mut_Detail_StereographicWarper(&mut self) -> *mut c_void
Source§impl Detail_StereographicWarperTraitConst for Detail_StereographicWarper
impl Detail_StereographicWarperTraitConst for Detail_StereographicWarper
fn as_raw_Detail_StereographicWarper(&self) -> *const c_void
Source§impl Drop for Detail_StereographicWarper
impl Drop for Detail_StereographicWarper
Source§impl From<Detail_StereographicWarper> for Detail_RotationWarper
impl From<Detail_StereographicWarper> for Detail_RotationWarper
Source§fn from(s: Detail_StereographicWarper) -> Self
fn from(s: Detail_StereographicWarper) -> Self
Converts to this type from the input type.
impl Send for Detail_StereographicWarper
Auto Trait Implementations§
impl Freeze for Detail_StereographicWarper
impl RefUnwindSafe for Detail_StereographicWarper
impl !Sync for Detail_StereographicWarper
impl Unpin for Detail_StereographicWarper
impl UnwindSafe for Detail_StereographicWarper
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
Source§impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
impl<Mat> ModifyInplace for Matwhere
Mat: Boxed,
Source§unsafe fn modify_inplace<Res>(
&mut self,
f: impl FnOnce(&Mat, &mut Mat) -> Res,
) -> Res
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