summaryrefslogtreecommitdiff
path: root/src/Stitch.H
diff options
context:
space:
mode:
authorJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-03-15 00:25:29 +0100
committerJohannes Hofmann <Johannes.Hofmann@gmx.de>2007-03-15 00:25:29 +0100
commit905cd5600e604aa1f9fe256ab3b4d7125695951e (patch)
tree224412f39e478a9e984a6661250f58db9772d8b6 /src/Stitch.H
parent8a59c4f63a5c0309e403ea5896ad6d3bbdac16bc (diff)
add color and brightness adjustment
Diffstat (limited to 'src/Stitch.H')
-rw-r--r--src/Stitch.H7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/Stitch.H b/src/Stitch.H
index 13e7bc0..62175be 100644
--- a/src/Stitch.H
+++ b/src/Stitch.H
@@ -13,13 +13,15 @@
#define MAX_PICS 256
+
class Stitch {
private:
GipfelWidget *gipf[MAX_PICS];
+ double color_adjust[MAX_PICS][3];
+ double V1, V2;
OutputImage *single_images[MAX_PICS];
OutputImage *merged_image;
-
public:
Stitch();
@@ -34,6 +36,9 @@ class Stitch {
int resample(GipfelWidget::sample_mode_t m,
int w, int h, double view_start, double view_end);
+ int color_calib(GipfelWidget::sample_mode_t m,
+ int w, int h, double view_start, double view_end);
+
int vignette_calib(GipfelWidget::sample_mode_t m,
int w, int h, double view_start, double view_end);
};