~helioviewer/jhelioviewer/1.0

« back to all changes in this revision

Viewing changes to src/org/helioviewer/model/ImageFilters.java

  • Committer: Benjamin Wamsler
  • Date: 2009-03-03 21:03:08 UTC
  • Revision ID: wamsler@helio-20090303210308-13ywlhbelm31sbvg
Merged with Alen's code; Some changed to the overlayed animation playing

Show diffs side-by-side

added added

removed removed

Lines of Context:
9
9
        private StandardLUT stdLut;
10
10
        private double gamma = 1.0;
11
11
        private ByteLUT byteLut;
 
12
        private double sharpenCoeff = 1.0;
 
13
        
12
14
        public ImageFilters(){
13
15
                sharpen = false;
14
16
                invert = false;
19
21
                this.sharpen = _value;
20
22
        }
21
23
        
 
24
        public void setSharpenCoeff(double _value) {
 
25
                this.sharpenCoeff = _value;
 
26
        }
 
27
        
22
28
        public void setInvert(boolean _value)
23
29
        {
24
30
                // really this method should not be called for a color 
31
37
                }
32
38
        }
33
39
        
 
40
        public double getSharpenCoeff()
 
41
        {
 
42
                return this.sharpenCoeff;
 
43
        }
 
44
        
34
45
        public boolean isSharpened()
35
46
        {
36
47
                return this.sharpen;