[][src]Struct cv_core::CameraPoint

pub struct CameraPoint(pub Point3<f32>);

A 3d point in camera coordinates (relative to camera). If the point is divided by the z component (projected onto a plane at z = 1), then the x and y components form a NormalizedKeypoint. This is because a point at that location would appear on the camera at that location.

Methods

impl CameraPoint[src]

pub fn new(__0: Point3<f32>) -> CameraPoint[src]

Trait Implementations

impl AsMut<Point<f32, U3>> for CameraPoint[src]

impl AsRef<Point<f32, U3>> for CameraPoint[src]

impl Clone for CameraPoint[src]

impl Copy for CameraPoint[src]

impl Debug for CameraPoint[src]

impl Deref for CameraPoint[src]

type Target = Point3<f32>

The resulting type after dereferencing.

impl DerefMut for CameraPoint[src]

impl From<CameraPoint> for NormalizedKeyPoint[src]

impl From<CameraPoint> for Point3<f32>[src]

impl From<Point<f32, U3>> for CameraPoint[src]

impl PartialEq<CameraPoint> for CameraPoint[src]

impl PartialOrd<CameraPoint> for CameraPoint[src]

impl StructuralPartialEq for CameraPoint[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> Scalar for T where
    T: PartialEq<T> + Copy + Any + Debug
[src]

impl<SS, SP> SupersetOf<SS> for SP where
    SS: SubsetOf<SP>, 

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,