[][src]Crate cv_core

Re-exports

pub use nalgebra;
pub use sample_consensus;

Structs

CameraIntrinsics

This contains intrinsic camera parameters as per this Wikipedia page.

CameraSpecification

This contains basic camera specifications that one could find on a manufacturer's website. This only contains parameters that cannot be changed about a camera. The focal length is not included since that can typically be changed and images can also be magnified.

ImageKeyPoint

A point on an image frame. This type should only be used when the point location is on the image frame in pixel coordinates. This means the keypoint is neither undistorted nor normalized.

KeypointWorldMatch

Normalized keypoint to world point match

KeypointsMatch

Normalized keypoint match

NormalizedKeyPoint

A point in normalized image coordinates. This keypoint has been corrected for distortion and normalized based on the camrea intrinsic matrix. Please note that the intrinsic matrix accounts for the natural focal length and any magnification to the image. Ultimately, the key points must be represented by their position on the camera sensor and normalized to the focal length of the camera.

WorldPoint

A point in "world" coordinates. This means that the real-world units of the pose are unknown, but the unit of distance and orientation are the same as the current reconstruction.

WorldPose

This contains a camera pose. The pose is in "world" coordinates. This means that the real-world units of the pose are unknown, but the unit of distance and orientation are the same as the current reconstruction.