aboutsummaryrefslogtreecommitdiff
path: root/pkg/images/images.cl
blob: 342b3bea7d3a36dd13aa4fc342da2ba8eb8d9e74 (plain) (blame)
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
#{ IMAGES package -- General image processing.

# Check that login.cl version matches IRAF version.  This has nothing to
# do with IMAGES, this is just a convenient place to test for an old
# login.cl, since IMAGES is virtually guaranteed to be loaded with IRAF.

if (cl.logver != cl.version && cl.logregen) {
    print ("WARNING: login.cl is outdated - rebuild with `mkiraf'")
    beep; sleep(1); beep; sleep(1); beep
}

set	imcoords 	= "images$imcoords/"
set	imfilter	= "images$imfilter/"
set	imfit		= "images$imfit/"
set	imgeom		= "images$imgeom/"
set	immatch		= "images$immatch/"
set	imutil		= "images$imutil/"
set	tv		= "images$tv/"

package	images

task	imcoords.pkg	= "imcoords$imcoords.cl"
task	imfilter.pkg	= "imfilter$imfilter.cl"
task	imfit.pkg	= "imfit$imfit.cl"
task	imgeom.pkg	= "imgeom$imgeom.cl"
task	immatch.pkg	= "immatch$immatch.cl"
task	imutil.pkg	= "imutil$imutil.cl"
task	tv.pkg		= "tv$tv.cl"

# Load images subpackages (tv is not autoloaded).
imcoords
imfilter
imfit
imgeom
immatch
imutil

clbye()