summaryrefslogtreecommitdiffstats
path: root/digikam/libs/greycstoration/greycstorationsettings.h
blob: e2686965f20354f535cefc37998a3a01314d6ddf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
/* ============================================================
 *
 * This file is a part of digiKam project
 * http://www.digikam.org
 *
 * Date        : 2006-21-07
 * Description : Greycstoration settings container.
 * 
 * Copyright (C) 2007 by Gilles Caulier <caulier dot gilles at gmail dot com> 
 * 
 * For a full settings description, look at this url :
 * http://www.greyc.ensicaen.fr/~dtschump/greycstoration/guide.html
 *
 * For demonstration of settings, look at this url :
 *
 * http://www.greyc.ensicaen.fr/~dtschump/greycstoration/demonstration.html
 *
 * This program is free software; you can redistribute it
 * and/or modify it under the terms of the GNU General
 * Public License as published by the Free Software Foundation;
 * either version 2, or (at your option)
 * any later version.
 * 
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * ============================================================ */

#ifndef GREYCSTORATIONSETTINGS_H
#define GREYCSTORATIONSETTINGS_H

// Local includes.

#include "digikam_export.h"

namespace Digikam
{

class DIGIKAM_EXPORT GreycstorationSettings
{

public:

    enum INTERPOLATION
    {
        NearestNeighbor = 0,
        Linear,
        RungeKutta
    };

public:
    
    GreycstorationSettings()
    {
        setRestorationDefaultSettings();
    };
    
    ~GreycstorationSettings(){};

    void setRestorationDefaultSettings()
    {
        fastApprox = true;
    
        tile       = 256;
        btile      = 4;
    
        nbIter     = 1;
        interp     = NearestNeighbor;
    
        amplitude  = 60.0;
        sharpness  = 0.7;
        anisotropy = 0.3;
        alpha      = 0.6;
        sigma      = 1.1;
        gaussPrec  = 2.0;
        dl         = 0.8;
        da         = 30.0;
    };

    void setInpaintingDefaultSettings()
    {
        fastApprox = true;
    
        tile       = 256;
        btile      = 4;
    
        nbIter     = 30;
        interp     = NearestNeighbor;
    
        amplitude  = 20.0;
        sharpness  = 0.3;
        anisotropy = 1.0;
        alpha      = 0.8;
        sigma      = 2.0;
        gaussPrec  = 2.0;
        dl         = 0.8;
        da         = 30.0;
    };

    void setResizeDefaultSettings()
    {
        fastApprox = true;
    
        tile       = 256;
        btile      = 4;
    
        nbIter     = 3;
        interp     = NearestNeighbor; 
    
        amplitude  = 20.0;
        sharpness  = 0.2;
        anisotropy = 0.9;
        alpha      = 0.1;
        sigma      = 1.5;
        gaussPrec  = 2.0;
        dl         = 0.8;
        da         = 30.0;
    };

public:

    bool  fastApprox;

    int   tile;
    int   btile;

    uint  nbIter;
    uint  interp;

    float amplitude;
    float sharpness;
    float anisotropy;
    float alpha;
    float sigma;
    float gaussPrec;
    float dl;
    float da;
};

}  // namespace Digikam

#endif  // GREYCSTORATIONSETTINGS_H