forked from markwbrown/MAPIR_Camera_Control
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mapir.config
67 lines (62 loc) · 2.25 KB
/
mapir.config
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
%Image::ExifTool::UserDefined = (
'Image::ExifTool::XMP::Main' => {
Camera => {
SubDirectory => {
TagTable => 'Image::ExifTool::UserDefined::Camera',
},
},
GPSInfo => {
SubDirectory => {
TagTable => 'Image::ExifTool::UserDefined::GPSInfo',
},
},
},
);
%Image::ExifTool::UserDefined::Camera = (
GROUPS => { 0 => 'XMP', 1 => 'XMP-Camera', 2 => 'Camera' },
NAMESPACE => { 'Camera' => 'http://pix4d.com/camera/1.0/' },
WRITABLE => 'string',
Yaw => { Writable => 'real' },
Pitch => { Writable => 'real' },
Roll => { Writable => 'real' },
IMUSampleSize => { Writable => 'integer' },
IMUTimeOffset => { Writable => 'integer' },
LineReadoutTime => { Writable => 'integer' },
ArrayID => { Writable => 'integer' },
ArrayType => { Writable => 'integer' },
IMUFrequency => { Writable => 'real' },
PrincipalPoint => { },
ModelType => { },
PerspectiveFocalLength => { Writable => 'real' },
PerspectiveDistortion => { },
IMULinearVelocity => { },
GPSXYAccuracy => { Writable => 'real' },
GPSZAccuracy => { Writable => 'real' },
FlightUUID => { },
CentralWaveLength => { },
BlackCurrent => { List => 'Seq' },
WavelengthFWHM => { },
BandName => { },
RigName => { },
RigCameraIndex => { },
BandName => { List => 'Seq' },
FocalPlaneXResolution => { Writable => 'rational64u'},
FocalPlaneYResolution => {Writable => 'rational64u' },
FocalPlaneResolutionUnit => { Writable => 'int16u'},
CentralWavelength => { List => 'Seq' },
WavelengthFWHM => { List => 'Seq' },
IMUAngularVelocity => {
Binary => 1,
ValueConv => 'Image::ExifTool::XMP::DecodeBase64($val)',
ValueConvInv => 'Image::ExifTool::XMP::EncodeBase64($val)',
},
);
%Image::ExifTool::UserDefined::GPSInfo = (
GROUPS => { 0 => 'XMP', 1 => 'XMP-GPSInfo', 2 => 'GPSInfo' },
NAMESPACE => { 'GPSInfo' => 'http://pix4d.com/gpsinfo/1.0/' },
WRITABLE => 'string',
GPSTimeStampS => { },
GPSLeapSeconds => { },
GPSTimeFormat => { },
GPSFixStatus => { },
);