Monado OpenXR Runtime
Loading...
Searching...
No Matches
camera_model.h
Go to the documentation of this file.
1// Copyright 2014-2015 Philipp Zabel
2// Copyright 2019-2023 Jan Schmidt
3// SPDX-License-Identifier: BSL-1.0
4/*!
5 * @file
6 * @brief Constellation tracker's camera model storage.
7 * @author Philipp Zabel <philipp.zabel@gmail.com>
8 * @author Jan Schmidt <jan@centricular.com>
9 * @author Beyley Cardellio <ep1cm1n10n123@gmail.com>
10 * @ingroup aux_tracking
11 */
12
13#pragma once
14
16
17
19{
20 //! Frame width
21 int width;
22 //! Frame height
23 int height;
24
25 //! Distortion / projection parameters
27};
Definition camera_model.h:19
int height
Frame height.
Definition camera_model.h:23
struct t_camera_model_params calib
Distortion / projection parameters.
Definition camera_model.h:26
int width
Frame width.
Definition camera_model.h:21
Floating point calibration data for a single calibrated camera.
Definition t_camera_models.h:59
Simple, untemplated, C, float-only, camera (un)projection functions for various camera models.