pub trait SFMLibmvEuclideanReconstructionTraitConst: BaseSFMTraitConst {
    // Required method
    fn as_raw_SFMLibmvEuclideanReconstruction(&self) -> *const c_void;

    // Provided methods
    fn get_error(&self) -> Result<f64> { ... }
    fn get_intrinsics(&self) -> Result<Mat> { ... }
}
Expand description

Required Methods§

Provided Methods§

source

fn get_error(&self) -> Result<f64>

Returns the computed reprojection error.

source

fn get_intrinsics(&self) -> Result<Mat>

Returns the refined camera calibration matrix.

Implementors§