pub trait SFMLibmvEuclideanReconstructionConst: BaseSFMConst {
    fn as_raw_SFMLibmvEuclideanReconstruction(&self) -> *const c_void;

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

SFMLibmvEuclideanReconstruction class provides an interface with the Libmv Structure From Motion pipeline.

Required Methods

Provided Methods

Returns the computed reprojection error.

Returns the refined camera calibration matrix.

Implementors