-
Notifications
You must be signed in to change notification settings - Fork 157
Expand file tree
/
Copy pathCameraCalibration.h
More file actions
36 lines (29 loc) · 986 Bytes
/
CameraCalibration.h
File metadata and controls
36 lines (29 loc) · 986 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
//*********************************************************
//
// Copyright (c) Microsoft. All rights reserved.
// This code is licensed under the MIT License (MIT).
// THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
// ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
// IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
// PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
//
//*********************************************************
#pragma once
namespace BatchProcessing
{
struct HoloLensCameraCalibration
{
std::wstring SensorName;
float FocalLengthX;
float FocalLengthY;
float PrincipalPointX;
float PrincipalPointY;
float RadialDistortionX;
float RadialDistortionY;
float RadialDistortionZ;
float TangentialDistortionX;
float TangentialDistortionY;
};
std::vector<HoloLensCameraCalibration> ReadCameraCalibrations(
Windows::Storage::StorageFolder^ recordingFolder);
}