blob: 466ca9599481342abecdc5b9f4b7dfbf87cc8a0d (
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
|
/*****************************************************************************/
// Copyright 2007 Adobe Systems Incorporated
// All Rights Reserved.
//
// NOTICE: Adobe permits you to use, modify, and distribute this file in
// accordance with the terms of the Adobe license agreement accompanying it.
/*****************************************************************************/
/* $Id: //mondo/dng_sdk_1_4/dng_sdk/source/dng_tone_curve.cpp#1 $ */
/* $DateTime: 2012/05/30 13:28:51 $ */
/* $Change: 832332 $ */
/* $Author: tknoll $ */
/*****************************************************************************/
#include "dng_tone_curve.h"
#include "dng_assertions.h"
#include "dng_spline.h"
#include "dng_utils.h"
/******************************************************************************/
dng_tone_curve::dng_tone_curve ()
: fCoord ()
{
SetNull ();
}
/******************************************************************************/
bool dng_tone_curve::operator== (const dng_tone_curve &curve) const
{
return fCoord == curve.fCoord;
}
/******************************************************************************/
void dng_tone_curve::SetNull ()
{
fCoord.resize (2);
fCoord [0].h = 0.0;
fCoord [0].v = 0.0;
fCoord [1].h = 1.0;
fCoord [1].v = 1.0;
}
/******************************************************************************/
bool dng_tone_curve::IsNull () const
{
dng_tone_curve temp;
return (*this == temp);
}
/******************************************************************************/
void dng_tone_curve::SetInvalid ()
{
fCoord.clear ();
}
/******************************************************************************/
bool dng_tone_curve::IsValid () const
{
if (fCoord.size () < 2)
{
return false;
}
for (uint32 j = 0; j < fCoord.size (); j++)
{
if (fCoord [j] . h < 0.0 || fCoord [j] . h > 1.0 ||
fCoord [j] . v < 0.0 || fCoord [j] . v > 1.0)
{
return false;
}
if (j > 0)
{
if (fCoord [j] . h <= fCoord [j - 1] . h)
{
return false;
}
}
}
return true;
}
/******************************************************************************/
void dng_tone_curve::Solve (dng_spline_solver &solver) const
{
solver.Reset ();
for (uint32 index = 0; index < fCoord.size (); index++)
{
solver.Add (fCoord [index].h,
fCoord [index].v);
}
solver.Solve ();
}
/*****************************************************************************/
|