forked from Starlink/pal
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpalPcd.c
105 lines (89 loc) · 2.91 KB
/
palPcd.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
*+
* Name:
* palPcd
* Purpose:
* Apply pincushion/barrel distortion to a tangent-plane [x,y]
* Language:
* Starlink ANSI C
* Type of Module:
* Library routine
* Invocation:
* palPcd( double disco, double * x, double * y );
* Arguments:
* disco = double (Given)
* Pincushion/barrel distortion coefficient.
* x = double * (Given & Returned)
* On input the tangent-plane X coordinate, on output
* the distorted X coordinate.
* y = double * (Given & Returned)
* On input the tangent-plane Y coordinate, on output
* the distorted Y coordinate.
* Description:
* Applies pincushion and barrel distortion to a tangent
* plane coordinate.
* Authors:
* PTW: Pat Wallace (RAL)
* TIMJ: Tim Jenness
* {enter_new_authors_here}
* Notes:
* - The distortion is of the form RP = R*(1 + C*R**2), where R is
* the radial distance from the tangent point, C is the DISCO
* argument, and RP is the radial distance in the presence of
* the distortion.
*
* - For pincushion distortion, C is +ve; for barrel distortion,
* C is -ve.
*
* - For X,Y in units of one projection radius (in the case of
* a photographic plate, the focal length), the following
* DISCO values apply:
*
* Geometry DISCO
*
* astrograph 0.0
* Schmidt -0.3333
* AAT PF doublet +147.069
* AAT PF triplet +178.585
* AAT f/8 +21.20
* JKT f/8 +13.32
*
* See Also:
* - There is a companion routine, palUnpcd, which performs the
* inverse operation.
* History:
* 2000-09-03 (PTW):
* SLALIB implementation.
* 2015-01-01 (TIMJ):
* Initial version. Ported from Fortran.
* {enter_further_changes_here}
* Copyright:
* Copyright (C) 2000 Rutherford Appleton Laboratory.
* Copyright (C) 2015 Tim Jenness
* All Rights Reserved.
* Licence:
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program (see SLA_CONDITIONS); if not, write to the
* Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
* Boston, MA 02110-1301 USA
* Bugs:
* {note_any_bugs_here}
*-
*/
#include "pal.h"
void palPcd( double disco, double *x, double *y ) {
double f;
f = 1.0 + disco * ( (*x) * (*x) + (*y) * (*y) );
*x *= f;
*y *= f;
}