Struct opencv::ccalib::MultiCameraCalibration[][src]

pub struct MultiCameraCalibration { /* fields omitted */ }
Expand description

Class for multiple camera calibration that supports pinhole camera and omnidirection camera. For omnidirectional camera model, please refer to omnidir.hpp in ccalib module. It first calibrate each camera individually, then a bundle adjustment like optimization is applied to refine extrinsic parameters. So far, it only support “random” pattern for calibration, see randomPattern.hpp in ccalib module for details. Images that are used should be named by “cameraIdx-timestamp.*”, several images with the same timestamp means that they are the same pattern that are photographed. cameraIdx should start from 0.

For more details, please refer to paper B. Li, L. Heng, K. Kevin and M. Pollefeys, “A Multiple-Camera System Calibration Toolbox Using A Feature Descriptor-Based Calibration Pattern”, in IROS 2013.

Implementations

C++ default parameters
  • verbose: 0
  • show_extration: 0
  • n_mini_matches: 20
  • flags: 0
  • criteria: TermCriteria(TermCriteria::COUNT+TermCriteria::EPS,200,1e-7)
  • detector: AKAZE::create(AKAZE::DESCRIPTOR_MLDB,0,3,0.006f)
  • descriptor: AKAZE::create(AKAZE::DESCRIPTOR_MLDB,0,3,0.006f)
  • matcher: DescriptorMatcher::create(“BruteForce-L1”)

Trait Implementations

Wrap the specified raw pointer Read more

Return an the underlying raw pointer while consuming this wrapper. Read more

Return the underlying raw pointer. Read more

Return the underlying mutable raw pointer Read more

Executes the destructor for this type. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.