1 /**********
2 *
3 * This file is part of the TINA Open Source Image Analysis Environment
4 * henceforth known as TINA
5 *
6 * TINA is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation.
9 *
10 * TINA is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with TINA; if not, write to the Free Software Foundation, Inc.,
17 * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18 *
19 **********
20 *
21 * Program : TINA
22 * File : $Source: /home/tina/cvs/tina-libs/tina/vision/visCorr_correlate.h,v $
23 * Date : $Date: 2004/08/04 15:07:47 $
24 * Version : $Revision: 1.1 $
25 * CVS Id : $Id: visCorr_correlate.h,v 1.1 2004/08/04 15:07:47 paul Exp $
26 *
27 * Author : NAT
28 *
29 * Notes :
30 *
31 *********
32 */
33
34 #ifndef TINA_VIS_CORR_CORRELATE_HDR
35 #define TINA_VIS_CORR_CORRELATE_HDR
36
37 #include <tina/sys/sysDef.h>
38 #include <tina/image/imgDef.h>
39 #include <tina/geometry/geomDef.h>
40
41 #ifdef __cplusplus
42 extern "C" {
43 #endif /* __cplusplus */
44
45 void setup_corLUTs(float **alpha, float **beta, int **kappa, int compress,
46 int stretch, int width);
47 float **auto_correlate(Imrect *im, Imregion *roi, int width, int compress,
48 int stretch, float *auto_partial, float *adj_partial,
49 float **norm, int **kappa, float **alpha, float **beta,
50 int ctf_scale);
51 float **partial_sum(Imrect *im1, Imrect *im2, Imregion *roi1, Imregion *roi2,
52 Imregion *disp, int width, int stretch, int compress,
53 float **cross_partial, float *norm1, int ctf_scale);
54 float **partial_accumulate(float **cross_partial, int **kappa, float **alpha,
55 float **beta, int stretch, int compress, int width,
56 Imregion *disp_lim, float **scores,
57 float norm1, float **norm2);
58 int im_count_edges(Imrect *im, Imregion *roi);
59 int imf_nz_maxmin(Imrect *im, float *max, float *min, int cen_i, int cen_j,
60 int srch_range);
61 float imf_hnonzero(Imrect *im, int i, int j, int range);
62 void stretch_output_block(Imrect *out_disp_im, Imrect *im1_edges,
63 Imrect *im2_edges, Imregion *roi1,
64 Imregion *roi2, double edge_delta);
65
66 #ifdef __cplusplus
67 }
68 #endif /* __cplusplus */
69 #endif
70
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.