|
17 | 17 | import vstarstack.tool.usage |
18 | 18 | import vstarstack.tool.manage_project |
19 | 19 |
|
20 | | -import vstarstack.tool.config |
21 | | -import vstarstack.tool.image |
22 | 20 | import vstarstack.tool.clean |
23 | | -import vstarstack.tool.readimage |
24 | | -import vstarstack.tool.merge |
25 | | -import vstarstack.tool.debayer |
26 | | -import vstarstack.tool.stars.stars |
27 | | -import vstarstack.tool.cluster |
28 | | -import vstarstack.tool.shift |
29 | | -import vstarstack.tool.image_processing.fixes |
30 | | -import vstarstack.tool.fine_shift.fine_shift |
31 | | -import vstarstack.tool.objects.objects |
32 | | -import vstarstack.tool.calibration |
33 | | -import vstarstack.tool.analyzers.analyzers |
34 | 21 |
|
35 | 22 | commands = { |
36 | | - "readimage": (vstarstack.tool.readimage.commands, |
| 23 | + "readimage": ("vstarstack.tool.readimage", |
37 | 24 | "read source images to npz"), |
38 | | - "debayer": (vstarstack.tool.debayer.run, |
| 25 | + "debayer": ("vstarstack.tool.debayer", |
39 | 26 | "debayer RAW images"), |
40 | | - "image-process": (vstarstack.tool.image_processing.fixes.commands, |
| 27 | + "image-process": ("vstarstack.tool.image_processing.fixes", |
41 | 28 | "image-process - make optical fixes and other image fixes"), |
42 | | - "calibration": (vstarstack.tool.calibration.commands, |
| 29 | + "calibration": ("vstarstack.tool.calibration", |
43 | 30 | "calibration - flats, darks"), |
44 | | - "objects": (vstarstack.tool.objects.objects.commands, |
| 31 | + "objects": ("vstarstack.tool.objects.objects", |
45 | 32 | "commands for processing images with compact objects " + |
46 | 33 | "(planets, diffractions, etc)"), |
47 | | - "stars": (vstarstack.tool.stars.stars.commands, |
| 34 | + "stars": ("vstarstack.tool.stars.stars", |
48 | 35 | "commands for processing stars images"), |
49 | | - "cluster": (vstarstack.tool.cluster.commands, |
| 36 | + "cluster": ("vstarstack.tool.cluster", |
50 | 37 | "command for cluster processing"), |
51 | | - "shift": (vstarstack.tool.shift.commands, |
| 38 | + "shift": ("vstarstack.tool.shift", |
52 | 39 | "move and rotate images to match them"), |
53 | | - "merge": (vstarstack.tool.merge.commands, |
| 40 | + "merge": ("vstarstack.tool.merge", |
54 | 41 | "merge images", "input_dir/ output.npz"), |
55 | 42 | "project": (vstarstack.tool.manage_project.run, |
56 | 43 | "configurate project"), |
57 | 44 | # "planets": (vstarstack.targets.planets.planets.run, |
58 | 45 | # "commands for processing planets"), |
59 | | - "image": (vstarstack.tool.image.commands, |
| 46 | + "image": ("vstarstack.tool.image", |
60 | 47 | "image processing (show, convert, etc)"), |
61 | 48 | "clean": (vstarstack.tool.clean.run, |
62 | 49 | "remove temporary files"), |
63 | | - "fine-shift": (vstarstack.tool.fine_shift.fine_shift.commands, |
| 50 | + "fine-shift": ("vstarstack.tool.fine_shift.fine_shift", |
64 | 51 | "fine shift images"), |
65 | | - "analyzers": (vstarstack.tool.analyzers.analyzers.commands, |
| 52 | + "analyzers": ("vstarstack.tool.analyzers.analyzers", |
66 | 53 | "analyze images"), |
67 | 54 | } |
0 commit comments