1 /**********
2 *
3 * Copyright (c) 2003, Division of Imaging Science and Biomedical Engineering,
4 * University of Manchester, UK. All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without modification,
7 * are permitted provided that the following conditions are met:
8 *
9 * . Redistributions of source code must retain the above copyright notice,
10 * this list of conditions and the following disclaimer.
11 *
12 * . Redistributions in binary form must reproduce the above copyright notice,
13 * this list of conditions and the following disclaimer in the documentation
14 * and/or other materials provided with the distribution.
15 *
16 * . Neither the name of the University of Manchester nor the names of its
17 * contributors may be used to endorse or promote products derived from this
18 * software without specific prior written permission.
19 *
20 *
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 * POSSIBILITY OF SUCH DAMAGE.
32 *
33 **********
34 *
35 * Program : TINA
36 * File : $Source: /home/tina/cvs/tina-libs/tina/image/imgPrc_ptr.h,v $
37 * Date : $Date: 2003/09/22 16:09:02 $
38 * Version : $Revision: 1.2 $
39 * CVS Id : $Id: imgPrc_ptr.h,v 1.2 2003/09/22 16:09:02 tony Exp $
40 *
41 * Author : Legacy TINA
42 *
43 * Notes :
44 *
45 *********
46 */
47
48 #ifndef TINA_IMG_PRC_PTR_HDR
49 #define TINA_IMG_PRC_PTR_HDR
50
51 #include <tina/image/img_GenDef.h>
52
53
54 #ifdef __cplusplus
55 extern "C" {
56 #endif /* __cplusplus */
57
58 void im_ptr_apply(Imrect * im, void (*func) (), void *data);
59 Imrect *im_pp_apply(Imrect * im1, void *(*func) (), void *data);
60 Imrect *im_pf_apply(Imrect * im1, double (*func) (), void *data);
61 Imrect *im_ppp_combine(Imrect * im1, Imrect * im2, void *(*func) (), void *data);
62 Imrect *im_ffp_combine(Imrect * im1, Imrect * im2, void *(*func) (), void *data);
63 Imrect *im_fffp_combine(Imrect * im1, Imrect * im2, Imrect * im3, void *(*func) (), void *data);
64 Imrect *im_fpp_combine(Imrect * im1, Imrect * im2, void *(*func) (), void *data);
65 Imrect *im_ppf_combine(Imrect * im1, Imrect * im2, double (*func) (), void *data);
66 void im_vec2_free(Imrect * im);
67 void im_vec3_free(Imrect * im);
68 void im_mat2_free(Imrect * im);
69 Imrect *im_vec2(Imrect * im1, Imrect * im2);
70 Imrect *im_vec2_sum(Imrect * u, Imrect * v);
71 Imrect *im_vec2_diff(Imrect * u, Imrect * v);
72 Imrect *im_vec2_dot(Imrect * u, Imrect * v);
73 Imrect *im_vec2_cross(Imrect * u, Imrect * v);
74 Imrect *im_mat2_vprod(Imrect * m, Imrect * v);
75 Imrect *im_mat2_sprod(Imrect * u, Imrect * m, Imrect * v);
76 Imrect *im_mat2_inverse(Imrect * m);
77 Imrect *im_mat2_of_cols(Imrect * cx, Imrect * cy);
78 Imrect *im_mat2_of_rows(Imrect * rx, Imrect * ry);
79 Imrect *im_vec2_grad(Imrect * im);
80 void im_mat2_grad_hessian(Imrect * im, Imrect ** g, Imrect ** h);
81 Imrect *im_mat2_hessian(Imrect * im);
82 Imrect *im_mat2_det(Imrect * m);
83 Imrect *im_vec2_x(Imrect * v);
84 Imrect *im_vec2_y(Imrect * v);
85 Imrect *im_mat2_xx(Imrect * m);
86 Imrect *im_mat2_xy(Imrect * m);
87 Imrect *im_mat2_yx(Imrect * m);
88 Imrect *im_mat2_yy(Imrect * m);
89 Imrect *im_vec3(Imrect * im1, Imrect * im2, Imrect *im3);
90
91 #ifdef __cplusplus
92 }
93 #endif /* __cplusplus */
94
95 #endif /* TINA_IMG_PRC_PTR_HDR */
96
97
This page was automatically generated by the
LXR engine.
Visit the LXR main site for more
information.