bcfb98489624a4edeae27c5def5d81d243e8fa1a
[goodguy/history.git] / cinelerra-5.1 / plugins / histogram_bezier / bistogramconfig.h
1
2 /*
3  * CINELERRA
4  * Copyright (C) 2008 Adam Williams <broadcast at earthling dot net>
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
19  *
20  */
21
22 #ifndef HISTOGRAMCONFIG_H
23 #define HISTOGRAMCONFIG_H
24
25
26 #include "bistogram.inc"
27 #include "bistogramconfig.inc"
28 #include "linklist.h"
29 #include <stdint.h>
30
31 class HistogramPoint : public ListItem<HistogramPoint>
32 {
33 public:
34         HistogramPoint();
35         ~HistogramPoint();
36
37         int equivalent(HistogramPoint *src);
38         float x, y;
39         float gradient;
40         float xoffset_left;
41         float xoffset_right;
42 };
43
44
45 class HistogramPoints : public List<HistogramPoint>
46 {
47 public:
48         HistogramPoints();
49         ~HistogramPoints();
50
51 // Insert new point
52         HistogramPoint* insert(float x, float y);
53         int equivalent(HistogramPoints *src);
54         void boundaries();
55         void copy_from(HistogramPoints *src);
56         void interpolate(HistogramPoints *prev,
57                 HistogramPoints *next,
58                 double prev_scale,
59                 double next_scale);
60 };
61
62 class HistogramConfig
63 {
64 public:
65         HistogramConfig();
66
67         int equivalent(HistogramConfig &that);
68         void copy_from(HistogramConfig &that);
69         void interpolate(HistogramConfig &prev,
70                 HistogramConfig &next,
71                 int64_t prev_frame,
72                 int64_t next_frame,
73                 int64_t current_frame);
74 // Used by constructor and reset button
75         void reset(int do_mode);
76         void reset_points();
77         void boundaries();
78         void dump();
79
80 // Range 0 - 1.0
81 // Input points
82         HistogramPoints points[HISTOGRAM_MODES];
83 // Output points
84         float output_min[HISTOGRAM_MODES];
85         float output_max[HISTOGRAM_MODES];
86         int automatic;
87         float threshold;
88         int split;
89         int smoothMode;
90 };
91
92
93 #endif
94
95
96