This repository has been archived by the owner on May 18, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 29
/
Contents.m
73 lines (66 loc) · 3.21 KB
/
Contents.m
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
68
69
70
71
72
% UAVProcessingCodes
%
% Documentation
% UAVProcessingREADME.doc, also in pdf version.
%
% Primary Functions
% sampleAerielleVideoDemo - master analysis routine
% demoInputFile - user input paths and parameters
% makeInstsDemo - example file to create pixel instruments
% demoGCPFile - example GCP file (.mat) from survey data
% makeLCPP3 - create Lens Calibration Profile for Phantom 3
% loadAndPartitionMovies - CIL-specific routine to break out frames
%
% Support main routines
% initUAVAnalysis - initialize geometry and reference points
% findNewBeta - find ref points and solve geom for new frame
% findCOMRefObjFirstPass - find center of mass, threshold of reference object
% findCOMRefObj - find center of mass of reference object
% fillInsts - fill in all pixels for pixel instruments
% showInsts - show instruments on image for QC
% sampleDJIFrame - extract pixel time series for instruments
% buildRectProducts - accumulate image product data frame by frame
% makeFinalImages - compute image products after all frames read in
% printAndSaveImageProducts - save png and matlab copies of images
%
% Support minor routines
% findUVnDOF - find U,V for any xyz using n dof geometry
% findXYZ6dof - find XYZ for any UV using 6 dof geometry
% undistort - convert from distorted to undistorted coords
% distort - convert from undistorted to distorted
% makeUAVPn - create good pathnames for CIL expectations
% makefr - used in distortion, f(r).
% makeRadDist - radial distance for distortion calcs
% makeTangDist - tangential distance for distortion calcs
% lcpBeta2P - build a P matrix from lcp and beta (angles)
% DJIReadInternalData - read the internal (non-EXIF) data from a
% DJI snapshot image.
%
% CILroutines that are called
% findXYZ - find XYZ for any UV
% onScreen - determines if pixels lie within the image space
% matlab2Epoch - conversion from datenum to Argus epoch time
% angles2R - create rotation matrix for projection
% argusDay - create standard format Argus day folder name
% argusFilename - create standard format Argus filename (uses DB!)
% matlab2Julian - create Julian day
% every - perl script to break out frame, likely won't work.
%
% Copyright (C) 2017 Coastal Imaging Research Network
% and Oregon State University
% This program is free software: you can redistribute it and/or
% modify it under the terms of the GNU General Public License as
% published by the Free Software Foundation, version 3 of the
% License.
% This program is distributed in the hope that it will be useful,
% but WITHOUT ANY WARRANTY; without even the implied warranty of
% MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
% GNU General Public License for more details.
% You should have received a copy of the GNU General Public License
% along with this program. If not, see
% <http://www.gnu.org/licenses/>.
% CIRN: https://coastal-imaging-research-network.github.io/
% CIL: http://cil-www.coas.oregonstate.edu
%
%key UAVProcessingToolbox
%