summaryrefslogtreecommitdiff
path: root/src/gipfel.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'src/gipfel.cxx')
-rw-r--r--src/gipfel.cxx24
1 files changed, 2 insertions, 22 deletions
diff --git a/src/gipfel.cxx b/src/gipfel.cxx
index db13287..9db0fce 100644
--- a/src/gipfel.cxx
+++ b/src/gipfel.cxx
@@ -53,7 +53,6 @@ Fl_Menu_Bar *mb;
#define STITCH_PREVIEW 1
#define STITCH_JPEG 2
#define STITCH_TIFF 4
-#define STITCH_VIGNETTE_CALIB 8
static int stitch(GipfelWidget::sample_mode_t m ,int stitch_w, int stitch_h,
double from, double to, int type, const char *path, int argc, char **argv);
@@ -398,7 +397,7 @@ int main(int argc, char** argv) {
int err, my_argc;
int stitch_flag = 0, stitch_w = 2000, stitch_h = 500;
int jpeg_flag = 0, tiff_flag = 0, distortion_flag = 0;
- int bicubic_flag = 0, vignette_flag = 0;
+ int bicubic_flag = 0;
double stitch_from = 0.0, stitch_to = 380.0;
double dist_k0 = 0.0, dist_k1 = 0.0, dist_x0 = 0.0;
char *outpath = "/tmp";
@@ -406,7 +405,7 @@ int main(int argc, char** argv) {
err = 0;
- while ((c = getopt(argc, argv, ":?d:v:sw:h:j:t:u:br:V")) != EOF) {
+ while ((c = getopt(argc, argv, ":?d:v:sw:h:j:t:u:br:")) != EOF) {
switch (c) {
case '?':
usage();
@@ -421,9 +420,6 @@ int main(int argc, char** argv) {
case 's':
stitch_flag++;
break;
- case 'V':
- vignette_flag++;
- break;
case 'r':
stitch_flag++;
if (optarg && strcmp(optarg, ":")) {
@@ -493,10 +489,6 @@ int main(int argc, char** argv) {
type = STITCH_PREVIEW;
}
- if (vignette_flag) {
- type |= STITCH_VIGNETTE_CALIB;
- }
-
stitch(bicubic_flag?GipfelWidget::BICUBIC:GipfelWidget::NEAREST,
stitch_w, stitch_h, stitch_from, stitch_to,
type, outpath, my_argc, my_argv);
@@ -569,18 +561,6 @@ stitch(GipfelWidget::sample_mode_t m,
}
- if (type & STITCH_VIGNETTE_CALIB) {
- win = new Fl_Window(0,0, 1000, 400);
- scroll = new Fl_Scroll(0, 0, win->w(), win->h());
- PreviewOutputImage *img =
- new PreviewOutputImage(0, 0, 1000, 400);
-
- win->resizable(scroll);
- win->show(0, argv);
- st->set_output((OutputImage*) img);
- st->vignette_calib(m, stitch_w, stitch_h, from, to);
- //st->color_calib(m, stitch_w, stitch_h, from, to);
- }
if (type & STITCH_JPEG) {
st->set_output((OutputImage*) new JPEGOutputImage(path, 90));