forked from georgmartius/vid.stab
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtransform_internal.h
57 lines (50 loc) · 1.75 KB
/
transform_internal.h
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
/*
* transform_internal.h
*
* Copyright (C) Georg Martius - June 2007 - 2011
* georg dot martius at web dot de
*
* This file is part of vid.stab video stabilization library
*
* vid.stab 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; either version 2, or
* (at your option) any later version.
*
* vid.stab 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 GNU Make; see the file COPYING. If not, write to
* the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*
*/
#ifndef __TRANSFORM_INTERNAL_H
#define __TRANSFORM_INTERNAL_H
#include "transform.h"
#include "transformfixedpoint.h"
#ifdef TESTING
#include "transformfloat.h"
#endif
/// name of the interpolation type
const char* getInterpolationTypeName(VSInterpolType type);
/** performs the smoothing of the camera path and modifies the transforms
to compensate for the jiggle
*/
int cameraPathOptimization(VSTransformData* td, VSTransformations* trans);
int cameraPathAvg(VSTransformData* td, VSTransformations* trans);
int cameraPathGaussian(VSTransformData* td, VSTransformations* trans);
int cameraPathOptimalL1(VSTransformData* td, VSTransformations* trans);
#endif
/*
* Local variables:
* c-file-style: "stroustrup"
* c-file-offsets: ((case-label . *) (statement-case-intro . *))
* indent-tabs-mode: nil
* c-basic-offset: 2 t
* End:
*
* vim: expandtab shiftwidth=2:
*/