EgoVideoStabilizer  1.0.0
master_frames.h
Go to the documentation of this file.
1 //
4 // SemanticFastForward_EPIC@ECCVW is free software: you can redistribute it and/or modify
5 // it under the terms of the GNU General Public License as published by
6 // the Free Software Foundation, either version 3 of the License, or
7 // (at your option) any later version.
8 //
9 // SemanticFastForward_JVCI is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 // GNU General Public License for more details.
13 //
14 // You should have received a copy of the GNU General Public License
15 // along with SemanticFastForward_EPIC@ECCVW. If not, see <http://www.gnu.org/licenses/>.
16 //
18 
26 #ifndef MASTERFRAMES_H
27 #define MASTERFRAMES_H
28 
29 #include <stdio.h>
30 #include <iostream>
31 #include <fstream>
32 
33 #include <omp.h>
34 #include <armadillo>
35 
36 #include <opencv2/core/core.hpp>
37 #include <opencv2/features2d/features2d.hpp>
38 #include <opencv2/highgui/highgui.hpp>
39 #include <opencv2/nonfree/nonfree.hpp>
40 #include <opencv2/calib3d/calib3d.hpp>
41 #include <opencv2/imgproc/imgproc.hpp>
42 
44 
45 #include "homography.h"
46 #include "file_operations.h"
47 
59 std::vector<int> getMasterFrames ( const EXPERIMENT experiment_settings , const int num_frames );
60 
71 int length ( int number );
72 
73 #endif // MASTERFRAMES_H
Header functions for the homography.cpp.
std::vector< int > getMasterFrames(const EXPERIMENT experiment_settings, const int num_frames)
Function that return the master frames in a sequence according with experiment settings, by load from a file or calculating them.
Definition: master_frames.cpp:266
Fields declaration of the experiment settings.
Header functions for the file_operations.cpp.
EXPERIMENT experiment_settings
Definition: main.cpp:59
int length(int number)
Function that counts the digits of the number.
Definition: master_frames.cpp:42
Definition: experiment_struct.h:32