~ubuntu-branches/ubuntu/precise/grass/precise

« back to all changes in this revision

Viewing changes to imagery/i.ortho.photo/i.photo.rectify/local_proto.h

  • Committer: Bazaar Package Importer
  • Author(s): Francesco Paolo Lovergine
  • Date: 2011-04-13 17:08:41 UTC
  • mfrom: (8.1.7 sid)
  • Revision ID: james.westby@ubuntu.com-20110413170841-ss1t9bic0d0uq0gz
Tags: 6.4.1-1
* New upstream version.
* Now build-dep on libjpeg-dev and current libreadline6-dev.
* Removed patch swig: obsolete.
* Policy bumped to 3.9.2, without changes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* angle.c */
 
2
int camera_angle(char *);
 
3
 
 
4
/* aver_z.c */
 
5
int get_aver_elev(struct Ortho_Control_Points *, double *);
 
6
 
 
7
/* cp.c */
 
8
int get_conz_points(void);
 
9
int get_ref_points(void);
 
10
 
 
11
/* elev_data.c */
 
12
int elev_data(char *, int);
 
13
 
 
14
/* env.c */
 
15
int select_current_env(void);
 
16
int select_target_env(void);
 
17
int show_env(void);
 
18
 
 
19
/* equ.c */
 
20
int Compute_ortho_equation(void);
 
21
int Compute_ref_equation(void);
 
22
 
 
23
/* exec.c */
 
24
int exec_rectify(char *, char *, char *);
 
25
 
 
26
/* get_wind.c */
 
27
int get_ref_window(struct Cell_head *);
 
28
int georef_window(struct Cell_head *, struct Cell_head *, double);
 
29
 
 
30
/* rectify.c */
 
31
int rectify(char *, char *, struct cache *, double, char *, char *);
 
32
 
 
33
/* readcell.c */
 
34
struct cache *readcell(int, int, int);
 
35
block *get_block(struct cache *, int);
 
36
void release_cache(struct cache *);
 
37
 
 
38
/* report.c */
 
39
int report(long, int);
 
40
 
 
41
/* target.c */
 
42
int get_target(char *);
 
43
 
 
44
/* declare resampling methods */
 
45
/* bilinear.c */
 
46
extern void p_bilinear(struct cache *, void *, int, double *, double *,
 
47
                       struct Cell_head *);
 
48
/* cubic.c */
 
49
extern void p_cubic(struct cache *, void *, int, double *, double *,
 
50
                    struct Cell_head *);
 
51
/* nearest.c */
 
52
extern void p_nearest(struct cache *, void *, int, double *, double *,
 
53
                      struct Cell_head *);
 
54
/* bilinear_f.c */
 
55
extern void p_bilinear_f(struct cache *, void *, int, double *, double *,
 
56
                       struct Cell_head *);
 
57
/* cubic_f.c */
 
58
extern void p_cubic_f(struct cache *, void *, int, double *, double *,
 
59
                    struct Cell_head *);