~ubuntu-branches/ubuntu/maverick/gimp/maverick-updates

« back to all changes in this revision

Viewing changes to app/base/levels.h

  • Committer: Bazaar Package Importer
  • Author(s): Daniel Holbach
  • Date: 2005-12-09 19:44:52 UTC
  • Revision ID: james.westby@ubuntu.com-20051209194452-yggpemjlofpjqyf4
Tags: upstream-2.2.9
ImportĀ upstreamĀ versionĀ 2.2.9

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* The GIMP -- an image manipulation program
 
2
 * Copyright (C) 1995 Spencer Kimball and Peter Mattis
 
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
 
15
 * along with this program; if not, write to the Free Software
 
16
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
17
 */
 
18
 
 
19
#ifndef __LEVELS_H__
 
20
#define __LEVELS_H__
 
21
 
 
22
 
 
23
struct _Levels
 
24
{
 
25
  gdouble gamma[5];
 
26
 
 
27
  gint    low_input[5];
 
28
  gint    high_input[5];
 
29
 
 
30
  gint    low_output[5];
 
31
  gint    high_output[5];
 
32
 
 
33
  guchar  input[5][256]; /* this is used only by the gui */
 
34
};
 
35
 
 
36
 
 
37
void     levels_init                (Levels               *levels);
 
38
void     levels_channel_reset       (Levels               *levels,
 
39
                                     GimpHistogramChannel  channel);
 
40
void     levels_stretch             (Levels               *levels,
 
41
                                     GimpHistogram        *hist,
 
42
                                     gboolean              is_color);
 
43
void     levels_channel_stretch     (Levels               *levels,
 
44
                                     GimpHistogram        *hist,
 
45
                                     GimpHistogramChannel  channel);
 
46
void     levels_adjust_by_colors    (Levels               *levels,
 
47
                                     GimpHistogramChannel  channel,
 
48
                                     guchar               *black,
 
49
                                     guchar               *gray,
 
50
                                     guchar               *white);
 
51
void     levels_calculate_transfers (Levels               *levels);
 
52
gfloat   levels_lut_func            (Levels               *levels,
 
53
                                     gint                  n_channels,
 
54
                                     gint                  channel,
 
55
                                     gfloat                value);
 
56
 
 
57
 
 
58
#endif  /*  __LEVELS_H__  */