source: corel/params.py

Last change on this file was 5, checked in by meynadie, 16 years ago

mises à jour diverses

File size: 697 bytes
Line 
1
2def pset(label):
3    if (label=='10m_g'):
4        ref='centre_0.fits'
5        img='10m_g_0.fits'
6        liste_points = [[337,432],
7                        [1701,416]]
8        sh_guess=[7,567] # (img-ref)
9
10    if (label=='10m_d'):
11        ref='centre_0.fits'
12        img='10m_d_0.fits'
13        liste_points = [[1765,1556],
14                        [285,1564]]
15        sh_guess=[-7,-567] # (img-ref)
16
17    if (label=='test'):
18        ref='zero.fits'
19        img='test.fits'
20        liste_points = [[338,432],
21                        [1701,416],
22                        [1765,1556],
23                        [285,1564]]
24        sh_guess=[0,0] # (img-ref)
25
26
27
28    return (ref,img,liste_points,sh_guess)
Note: See TracBrowser for help on using the repository browser.