NASA Astrobee Robot Software  0.19.1
Flight software for the Astrobee robots operating inside the International Space Station.
run_calibrator_params.h
Go to the documentation of this file.
1 /* Copyright (c) 2017, United States Government, as represented by the
2  * Administrator of the National Aeronautics and Space Administration.
3  *
4  * All rights reserved.
5  *
6  * The Astrobee platform is licensed under the Apache License, Version 2.0
7  * (the "License"); you may not use this file except in compliance with the
8  * License. You may obtain a copy of the License at
9  *
10  * http://www.apache.org/licenses/LICENSE-2.0
11  *
12  * Unless required by applicable law or agreed to in writing, software
13  * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
14  * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
15  * License for the specific language governing permissions and limitations
16  * under the License.
17  */
18 #ifndef CALIBRATION_RUN_CALIBRATOR_PARAMS_H_
19 #define CALIBRATION_RUN_CALIBRATOR_PARAMS_H_
20 
22 #include <camera/camera_params.h>
23 
24 #include <memory>
25 #include <string>
26 
27 namespace calibration {
30  std::shared_ptr<camera::CameraParameters> camera_params;
31  std::string camera_name;
32  // fov, rad, or radtan
33  std::string distortion_type;
34 };
35 } // namespace calibration
36 
37 #endif // CALIBRATION_RUN_CALIBRATOR_PARAMS_H_
calibration::CameraTargetBasedIntrinsicsCalibratorParams
Definition: camera_target_based_intrinsics_calibrator_params.h:31
calibration::RunCalibratorParams::distortion_type
std::string distortion_type
Definition: run_calibrator_params.h:33
calibration::RunCalibratorParams
Definition: run_calibrator_params.h:28
calibration::RunCalibratorParams::camera_name
std::string camera_name
Definition: run_calibrator_params.h:31
calibration::RunCalibratorParams::camera_params
std::shared_ptr< camera::CameraParameters > camera_params
Definition: run_calibrator_params.h:30
camera_target_based_intrinsics_calibrator_params.h
calibration
Definition: camera_target_based_intrinsics_calibrator.h:42
camera_params.h
calibration::RunCalibratorParams::camera_target_based_intrinsics_calibrator
CameraTargetBasedIntrinsicsCalibratorParams camera_target_based_intrinsics_calibrator
Definition: run_calibrator_params.h:29