00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034
00035
00036
00037
00038
00039
00040
00041
00042
00052 #ifndef __LIBGPIV_POST_H__
00053 #define __LIBGPIV_POST_H__
00054
00055
00056 #include <gpiv/gpiv-post_par.h>
00057
00058
00062 enum GpivVelComponent {
00063 GPIV_U,
00064 GPIV_V
00065 };
00066
00067
00068
00076 gchar *
00077 gpiv_post_manipiv (GpivPivData *piv_data,
00078 const GpivPostPar *post_par
00079 );
00080
00081
00082
00091 gchar *
00092 gpiv_post_savg (GpivPivData *piv_data,
00093 const GpivPostPar *post_par
00094 );
00095
00096
00097
00108 GpivBinData *
00109 gpiv_post_uvhisto (const GpivPivData *piv_data,
00110 const guint nbins,
00111 const enum GpivVelComponent velcomp
00112 );
00113
00114
00115
00124 gchar *
00125 gpiv_post_subtract_dxdy (GpivPivData *piv_data,
00126 const gfloat z_off_dx,
00127 const gfloat z_off_dy
00128 );
00129
00130
00131
00139 gchar *
00140 gpiv_post_scale (GpivPivData *piv_data,
00141 const GpivImagePar *image_par
00142 );
00143
00144
00145
00153 gchar *
00154 gpiv_post_inverse_scale (GpivPivData *piv_data,
00155 const GpivImagePar *image_par
00156 );
00157
00158
00159
00167 GpivScalarData *
00168 gpiv_post_vorstra (const GpivPivData *piv_data,
00169 const GpivPostPar *post_par
00170 );
00171
00172
00173 #endif