Calibration Library 1.0.0
A C++ library for camera calibration and vision-related geometric transformations
Loading...
Searching...
No Matches
homography.h
Go to the documentation of this file.
1
3#pragma once
4
5#include <Eigen/Core>
6
7#include "calib/estimation/linear/homography.h" // PlanarView
9
10namespace calib {
11
14 Eigen::Matrix3d homography;
15};
16
17auto optimize_homography(const PlanarView& data, const Eigen::Matrix3d& init_h,
18 const OptimOptions& options = {}) -> OptimizeHomographyResult;
19
20} // namespace calib
Linear multi-camera extrinsics initialisation (DLT)
auto optimize_homography(const PlanarView &data, const Eigen::Matrix3d &init_h, const OptimOptions &options={}) -> OptimizeHomographyResult
std::vector< PlanarObservation > PlanarView
Definition planarpose.h:26
OptimResult core
Core optimization result.
Definition homography.h:13