UWARG Computer Vision
metadata.h
Go to the documentation of this file.
1 /*
2  This file is part of WARG's computer-vision
3 
4  Copyright (c) 2015, Waterloo Aerial Robotics Group (WARG)
5  All rights reserved.
6 
7  Redistribution and use in source and binary forms, with or without
8  modification, are permitted provided that the following conditions are met:
9  1. Redistributions of source code must retain the above copyright
10  notice, this list of conditions and the following disclaimer.
11  2. Redistributions in binary form must reproduce the above copyright
12  notice, this list of conditions and the following disclaimer in the
13  documentation and/or other materials provided with the distribution.
14  3. Usage of this code MUST be explicitly referenced to WARG and this code
15  cannot be used in any competition against WARG.
16  4. Neither the name of the WARG nor the names of its contributors may be used
17  to endorse or promote products derived from this software without specific
18  prior written permission.
19 
20  THIS SOFTWARE IS PROVIDED BY WARG ''AS IS'' AND ANY
21  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
22  WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23  DISCLAIMED. IN NO EVENT SHALL WARG BE LIABLE FOR ANY
24  DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
25  (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
26  LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
27  ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
28  (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29  SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31 
32 #ifndef METADATA_H_INCLUDED
33 #define METADATA_H_INCLUDED
34 
43 struct Metadata{
47  double time;
48 
52  double timeError;
53 
57  double lat;
58 
62  double lon;
63 
67  double latError;
68 
72  double lonError;
73 
77  double pitch;
78 
82  double roll;
83 
87  double pitchRate;
88 
92  double rollRate;
93 
97  double yawRate;
98 
102  double altitude;
103 
107  double heading;
108 
112  double altError;
113 
117  double headingError;
118 };
119 
120 
121 #endif // METADATA_H_INCLUDED
double lonError
Error associated with the longitude.
Definition: metadata.h:72
Definition: metadata.h:43
double altError
error associated with the plane's altitude
Definition: metadata.h:112
double pitchRate
Pitch rate of the camera at time of frame capture.
Definition: metadata.h:87
double lat
Latitude of the plane at time of frame capture.
Definition: metadata.h:57
double heading
heading of the plane at time of frame capture
Definition: metadata.h:107
double yawRate
yaw rate of the plane at time of frame capture
Definition: metadata.h:97
double pitch
Pitch of the camera at time of frame capture.
Definition: metadata.h:77
double rollRate
Roll rate of the camera at time of frame capture.
Definition: metadata.h:92
double time
Time of Frame capture.
Definition: metadata.h:47
double headingError
Error associated with the plane's heading.
Definition: metadata.h:117
double altitude
altitude of the plane at time of frame capture
Definition: metadata.h:102
double latError
Error associated with the latitude.
Definition: metadata.h:67
double timeError
Error associated with the time.
Definition: metadata.h:52
double lon
Longitude of the plane at time of frame capture.
Definition: metadata.h:62
double roll
Roll of the camera at time of frame capture.
Definition: metadata.h:82