blob: e54fc1b50abc0e951e3153a78343e9c6a4a448f8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
# File of definitions for interpolator package.
# Interpolator Types:
define IT_NEAREST 1
define IT_LINEAR 2
define IT_POLY3 3
define IT_POLY5 4
define IT_SPLINE3 5
define ITNIT 5 # number of types
# Size of header etc. used for part of coeff dimension
define SZ_ASI 20
# Total number of points used in spline interpolation of of bad pixels by
# subroutine arbpix.
define SPLPTS 16
|