Trait cv_core::CameraModel[][src]

pub trait CameraModel {
    type Projection: Bearing;
    fn calibrate<P>(&self, point: P) -> Self::Projection
    where
        P: ImagePoint
;
fn uncalibrate(&self, projection: Self::Projection) -> KeyPoint; }
Expand description

Allows conversion between the point on an image and the internal projection which can describe the bearing of the projection out of the camera.

Associated Types

Required methods

Extracts a projection from a pixel location in an image.

Extracts the pixel location in the image from the projection.

Implementors