Facility for selection (on client) of a subset of images
[phoros.git] / package.lisp
blobb0242d1e05d2947fb5fbbab4067c0f429d4f6820
1 ;;; PHOROS -- Photogrammetric Road Survey
2 ;;; Copyright (C) 2010, 2011, 2012 Bert Burgemeister
3 ;;;
4 ;;; This program is free software; you can redistribute it and/or modify
5 ;;; it under the terms of the GNU General Public License as published by
6 ;;; the Free Software Foundation; either version 2 of the License, or
7 ;;; (at your option) any later version.
8 ;;;
9 ;;; This program is distributed in the hope that it will be useful,
10 ;;; but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 ;;; GNU General Public License for more details.
13 ;;;
14 ;;; You should have received a copy of the GNU General Public License along
15 ;;; with this program; if not, write to the Free Software Foundation, Inc.,
16 ;;; 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
19 (defpackage :phoros-photogrammetry
20 (:documentation "Interface to the PhoML library.")
21 (:use :cl
22 :phoml)
23 (:export :photogrammetry
24 :*photogrammetry-mutex*
25 :del-all))
27 (defpackage :phoros
28 (:use :cl
29 :phoros-photogrammetry
30 :parenscript
31 :postmodern))
33 (defpackage :phoros-command-line-interface
34 (:documentation "The part of Phoros that provides its UNIX command
35 line interface.")
36 (:nicknames :cli)
37 (:use :cl)
38 (:import-from :command-line-arguments
39 :compute-and-process-command-line-options
40 :*command-line-arguments*
41 :show-option-help
42 :process-command-line-options)
43 (:export :compute-and-process-command-line-options
44 :*command-line-arguments*
45 :show-option-help
46 :process-command-line-options
47 :*general-options*
48 :*db-connection-options*
49 :*aux-db-connection-options*
50 :*get-image-options*
51 :*camera-hardware-options*
52 :*lens-options*
53 :*generic-device-options*
54 :*device-stage-of-life-options*
55 :*device-stage-of-life-end-options*
56 :*camera-calibration-options*
57 :*acquisition-project-options*
58 :*store-images-and-points-options*
59 :*start-server-options*
60 :*presentation-project-options*
61 :*aux-view-options*
62 :*user-points-options*
63 :*user-options*
64 :*options*
65 :.phoros-options
66 :with-options
67 :remaining-options
68 :help-action
69 :version-action
70 :licence-action
71 :main
72 :check-db-action
73 :check-dependencies-action
74 :nuke-all-tables-action
75 :create-sys-tables-action
76 :create-acquisition-project-action
77 :delete-acquisition-project-action
78 :delete-measurement-action
79 :list-acquisition-project-action
80 :store-images-and-points-action
81 :insert-footprints-action
82 :canonicalize-bayer-pattern
83 :canonicalize-color-raiser
84 :store-stuff
85 :store-camera-hardware-action
86 :store-lens-action
87 :store-generic-device-action
88 :store-device-stage-of-life-action
89 :store-device-stage-of-life-end-action
90 :store-camera-calibration-action
91 :get-image-action
92 :create-presentation-project-action
93 :delete-presentation-project-action
94 :add-to-presentation-project-action
95 :remove-from-presentation-project-action
96 :redefine-trigger-function-action
97 :create-aux-view-action
98 :store-user-points-action
99 :get-user-points-action
100 :create-user-action
101 :delete-user-action
102 :list-user-action
103 :list-presentation-project-action
104 :format-table
105 :server-action))