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 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169
|
/*
* transformtype_operations.h
*
* Copyright (C) Georg Martius - June 2007 - 2013
*
* This file is part of transcode, a video stream processing tool
*
* transcode 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.
*
* transcode 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 __TRANSFORMTYPE_OPERATIONS_H
#define __TRANSFORMTYPE_OPERATIONS_H
#include "transformtype.h"
#include "vidstabdefines.h"
#include "vsvector.h"
#include "frameinfo.h"
/// helper macro to access a localmotion in the VSVector
#define LMGet(localmotions,index) \
((LocalMotion*)vs_vector_get(localmotions,index))
/* helper functions to create and operate with transforms.
* all functions are non-destructive
* the "_" version uses non-pointer Transforms. This is slower
* but useful when cascading calculations like
* add_transforms_(mult_transform(&t1, 5.0), &t2)
*/
VSTransform null_transform(void);
VSTransform new_transform(double x, double y, double alpha,
double zoom, double barrel, double rshutter, int extra);
VSTransform add_transforms(const VSTransform* t1, const VSTransform* t2);
VSTransform add_transforms_(const VSTransform t1, const VSTransform t2);
VSTransform sub_transforms(const VSTransform* t1, const VSTransform* t2);
VSTransform mult_transform(const VSTransform* t1, double f);
VSTransform mult_transform_(const VSTransform t1, double f);
void storeVSTransform(FILE* f, const VSTransform* t);
typedef struct _preparedtransform {
const VSTransform* t;
double zcos_a;
double zsin_a;
double c_x;
double c_y;
} PreparedTransform;
// transforms vector
PreparedTransform prepare_transform(const VSTransform* t, const VSFrameInfo* fi);
// transforms vector (attention, only integer)
Vec transform_vec(const PreparedTransform* t, const Vec* v);
void transform_vec_double(double *x, double* y, const PreparedTransform* t, const Vec* v);
// subtract two vectors
Vec sub_vec(Vec v1, Vec v2);
// adds two vectors
Vec add_vec(Vec v1, Vec v2);
Vec field_to_vec(Field f);
/* compares a transform with respect to x (for sort function) */
int cmp_trans_x(const void *t1, const void* t2);
/* compares a transform with respect to y (for sort function) */
int cmp_trans_y(const void *t1, const void* t2);
/* static int cmp_trans_alpha(const void *t1, const void* t2); */
/* compares two double values (for sort function)*/
int cmp_double(const void *t1, const void* t2);
/* compares two int values (for sort function)*/
int cmp_int(const void *t1, const void* t2);
/** square of a number */
double sqr(double x);
/* calculates the median of an array of transforms,
* considering only x and y
*/
VSTransform median_xy_transform(const VSTransform* transforms, int len);
/* median of a double array */
double median(double* ds, int len);
/* mean of a double array */
double mean(const double* ds, int len);
/* standard deviation of a double array */
double stddev(const double* ds, int len, double mean);
/* mean with cutted upper and lower pentile
* (min and max are optionally returned)
*/
double cleanmean(double* ds, int len, double* minimum, double* maximum);
/* calulcates the cleaned mean of an array of transforms,
* considerung only x and y
*/
VSTransform cleanmean_xy_transform(const VSTransform* transforms, int len);
/* calculates the cleaned (cutting of x-th percentil)
* maximum and minimum of an array of transforms,
* considerung only x and y
*/
void cleanmaxmin_xy_transform(const VSTransform* transforms, int len,
int percentil,
VSTransform* min, VSTransform* max);
/* calculates the required zoom value to have no borders visible
*/
double transform_get_required_zoom(const VSTransform* transform, int width, int height);
/* helper function to work with local motions */
LocalMotion null_localmotion(void);
/// a new array of the v.x values is returned (vs_free has to be called)
int* localmotions_getx(const LocalMotions* localmotions);
/// a new array of the v.y values is returned (vs_free has to be called)
int* localmotions_gety(const LocalMotions* localmotions);
/// lm1 - lm2 only for the Vec (the remaining values are taken from lm1)
LocalMotion sub_localmotion(const LocalMotion* lm1, const LocalMotion* lm2);
/* calulcates the cleaned mean of the vector of localmotions
* considerung only v.x and v.y
*/
LocalMotion cleanmean_localmotions(const LocalMotions* localmotions);
VSArray localmotionsGetMatch(const LocalMotions* localmotions);
/* helper functions */
/* optimized round function */
inline static int myround(float x) {
if(x>0)
return x + 0.5;
else
return x - 0.5;
}
/* optimized floor function
This does not give the correct value for negative integer values like -1.0. In this case
it will produce -2.0.
*/
inline static int myfloor(float x) {
if(x<0)
return x - 1;
else
return x;
}
#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:
*/
|