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/medical/medNorm_base.h,v $
23 * Date : $Date: 2008/10/13 15:34:03 $
24 * Version : $Revision: 1.5 $
25 * CVS Id : $Id: medNorm_base.h,v 1.5 2008/10/13 15:34:03 paul Exp $
26 *
27 * Author : paul.bromiley@manchester.ac.uk
28 *
29 * Notes :
30 *
31 *********
32 */
33
34 #ifndef TINA_MED_NORM_BASE_HDR
35 #define TINA_MED_NORM_BASE_HDR
36
37 #include <tina/image/imgDef.h>
38
39 #ifdef __cplusplus
40 extern "C" {
41 #endif /* __cplusplus */
42
43 void edge_mask(double sig_noise, Imrect *im1, Imrect *im2, Imrect **cut, Imrect **image1, Imrect **image2);
44 double im_fraction(Imrect *cut, Imrect *image1, Imrect *image2, int nbin, double sig_noise);
45 void smooth_slopes(double sig_noise, double nsmear, Imrect *image, Imrect **imdx, Imrect **imdy, Imrect **corr, Imrect **imxs, Imrect **imys);
46 void enf_integ(Imrect **imdx, Imrect **imdy, Imrect *corr, Imrect *imxs, Imrect *imys);
47 double im_corscale(Imrect *im0, Imrect *corr, double noise);
48 double im_corscale2(Imrect *im0, Imrect *corr, double noise);
49 Imrect *im_integrate(Imrect *imdxf, Imrect *imdyf);
50 void combine_corrs(Imrect **imd, Imrect **ims, Imrect *imd_r, Imrect *ims_r, Imrect *imd_i, Imrect *ims_i);
51 Imrect *xy_normf(Imrect *im, double constant, double sigma, double thresh);
52 Imrect *xy_normz(Imrect *im, double constant, double sigma, double thresh);
53 Imrect *xy_norm(Imrect *im, double constant, double sigma, double thresh);
54
55
56 #ifdef __cplusplus
57 }
58 #endif /* __cplusplus */
59
60 #endif /* TINA_MED_NORM_BASE_HDR */
61
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.