pub trait Detail_CameraParamsTraitConst {
    fn as_raw_Detail_CameraParams(&self) -> *const c_void;

    fn focal(&self) -> f64 { ... }
    fn aspect(&self) -> f64 { ... }
    fn ppx(&self) -> f64 { ... }
    fn ppy(&self) -> f64 { ... }
    fn r(&self) -> Mat { ... }
    fn t(&self) -> Mat { ... }
    fn k(&self) -> Result<Mat> { ... }
}
Expand description

Describes camera parameters.

Note: Translation is assumed to be zero during the whole stitching pipeline. :

Required Methods

Provided Methods

Implementors