pub struct Detail_SphericalWarper { /* private fields */ }
Expand description
Warper that maps an image onto the unit sphere located at the origin.
Projects image onto unit sphere with origin at (0, 0, 0) and radius scale, measured in pixels. A 360 panorama would therefore have a resulting width of 2 * scale * PI pixels. Poles are located at (0, -1, 0) and (0, 1, 0) points.
Implementations§
Trait Implementations§
Source§impl Boxed for Detail_SphericalWarper
impl Boxed for Detail_SphericalWarper
Source§unsafe fn from_raw(
ptr: <Detail_SphericalWarper as OpenCVFromExtern>::ExternReceive,
) -> Self
unsafe fn from_raw( ptr: <Detail_SphericalWarper as OpenCVFromExtern>::ExternReceive, ) -> Self
Wrap the specified raw pointer Read more
Source§fn into_raw(
self,
) -> <Detail_SphericalWarper as OpenCVTypeExternContainer>::ExternSendMut
fn into_raw( self, ) -> <Detail_SphericalWarper as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying raw pointer while consuming this wrapper. Read more
Source§fn as_raw(
&self,
) -> <Detail_SphericalWarper as OpenCVTypeExternContainer>::ExternSend
fn as_raw( &self, ) -> <Detail_SphericalWarper as OpenCVTypeExternContainer>::ExternSend
Return the underlying raw pointer. Read more
Source§fn as_raw_mut(
&mut self,
) -> <Detail_SphericalWarper as OpenCVTypeExternContainer>::ExternSendMut
fn as_raw_mut( &mut self, ) -> <Detail_SphericalWarper as OpenCVTypeExternContainer>::ExternSendMut
Return the underlying mutable raw pointer Read more
Source§impl Debug for Detail_SphericalWarper
impl Debug for Detail_SphericalWarper
Source§impl Detail_RotationWarperTrait for Detail_SphericalWarper
impl Detail_RotationWarperTrait for Detail_SphericalWarper
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_SphericalWarperTrait for Detail_SphericalWarper
impl Detail_SphericalWarperTrait for Detail_SphericalWarper
fn as_raw_mut_Detail_SphericalWarper(&mut self) -> *mut c_void
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 warp( &mut self, src: &impl ToInputArray, k: &impl ToInputArray, r: &impl ToInputArray, interp_mode: i32, border_mode: i32, dst: &mut impl ToOutputArray, ) -> Result<Point>
Source§impl Detail_SphericalWarperTraitConst for Detail_SphericalWarper
impl Detail_SphericalWarperTraitConst for Detail_SphericalWarper
fn as_raw_Detail_SphericalWarper(&self) -> *const c_void
Source§impl Drop for Detail_SphericalWarper
impl Drop for Detail_SphericalWarper
Source§impl From<Detail_SphericalWarper> for Detail_RotationWarper
impl From<Detail_SphericalWarper> for Detail_RotationWarper
Source§fn from(s: Detail_SphericalWarper) -> Self
fn from(s: Detail_SphericalWarper) -> Self
Converts to this type from the input type.
Source§impl From<Detail_SphericalWarperGpu> for Detail_SphericalWarper
impl From<Detail_SphericalWarperGpu> for Detail_SphericalWarper
Source§fn from(s: Detail_SphericalWarperGpu) -> Self
fn from(s: Detail_SphericalWarperGpu) -> Self
Converts to this type from the input type.
impl Send for Detail_SphericalWarper
Auto Trait Implementations§
impl Freeze for Detail_SphericalWarper
impl RefUnwindSafe for Detail_SphericalWarper
impl !Sync for Detail_SphericalWarper
impl Unpin for Detail_SphericalWarper
impl UnwindSafe for Detail_SphericalWarper
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