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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
|
{ TFPCustomInterpolation }
procedure TFPCustomInterpolation.Initialize(aimage: TFPCustomImage; acanvas: TFPCustomCanvas);
begin
fimage := aimage;
fcanvas := acanvas;
end;
{ TFPBaseInterpolation }
procedure TFPBaseInterpolation.CreatePixelWeights(OldSize, NewSize: integer;
out Entries: Pointer; out EntrySize: integer; out Support: integer);
// create an array of #NewSize entries. Each entry starts with an integer
// for the StartIndex, followed by #Support singles for the pixel weights.
// The sum of weights for each entry is 1.
var
Entry: Pointer;
procedure SetSupport(NewSupport: integer);
begin
Support:=NewSupport;
EntrySize:=SizeOf(integer)+SizeOf(Single)*Support;
Getmem(Entries,EntrySize*NewSize);
Entry:=Entries;
end;
var
i: Integer;
Factor: double;
StartPos: Double;
StartIndex: Integer;
j: Integer;
FirstValue: Double;
//Sum: double;
begin
if NewSize=OldSize then
begin
SetSupport(1);
for i:=0 to NewSize-1 do
begin
// 1:1
PInteger(Entry)^:=i;
inc(Entry,SizeOf(Integer));
PSingle(Entry)^:=1.0;
inc(Entry,SizeOf(Single));
end;
end else if NewSize<OldSize then
begin
// shrink
SetSupport(Max(2,(OldSize+NewSize-1) div NewSize));
Factor:=double(OldSize)/double(NewSize);
for i:=0 to NewSize-1 do
begin
StartPos:=Factor*i;
StartIndex:=Floor(StartPos);
PInteger(Entry)^:=StartIndex;
inc(Entry,SizeOf(Integer));
// first pixel
FirstValue:=(1.0-(StartPos-double(StartIndex)));
PSingle(Entry)^:=FirstValue/Factor;
inc(Entry,SizeOf(Single));
// middle pixel
for j:=1 to Support-2 do
begin
PSingle(Entry)^:=1.0/Factor;
inc(Entry,SizeOf(Single));
end;
// last pixel
PSingle(Entry)^:=(Factor-FirstValue-(Support-2))/Factor;
inc(Entry,SizeOf(Single));
end;
end else
begin
// enlarge
if OldSize=1 then
begin
SetSupport(1);
for i:=0 to NewSize-1 do
begin
// nothing to interpolate
PInteger(Entry)^:=0;
inc(Entry,SizeOf(Integer));
PSingle(Entry)^:=1.0;
inc(Entry,SizeOf(Single));
end;
end else
begin
SetSupport(2);
Factor:=double(OldSize-1)/double(NewSize);
for i:=0 to NewSize-1 do
begin
StartPos:=Factor*i+Factor/2;
StartIndex:=Floor(StartPos);
PInteger(Entry)^:=StartIndex;
inc(Entry,SizeOf(Integer));
// first pixel
FirstValue:=(1.0-(StartPos-double(StartIndex)));
// convert linear distribution
FirstValue:=Min(1.0,Max(0.0,Filter(FirstValue/MaxSupport)));
PSingle(Entry)^:=FirstValue;
inc(Entry,SizeOf(Single));
// last pixel
PSingle(Entry)^:=1.0-FirstValue;
inc(Entry,SizeOf(Single));
end;
end;
end;
if Entry<>Entries+EntrySize*NewSize then
raise Exception.Create('TFPBase2Interpolation.Execute inconsistency');
end;
procedure TFPBaseInterpolation.Execute(x, y, w, h: integer);
// paint Image on Canvas at x,y,w*h
var
dy: Integer;
dx: Integer;
HorzResized: PFPColor;
xEntries: Pointer;
xEntrySize: integer;
xSupport: integer;// how many horizontal pixel are needed to create one pixel
yEntries: Pointer;
yEntrySize: integer;
ySupport: integer;// how many vertizontal pixel are needed to create one pixel
NewSupportLines: LongInt;
yEntry: Pointer;
SrcStartY: LongInt;
LastSrcStartY: LongInt;
LastyEntry: Pointer;
sy: Integer;
xEntry: Pointer;
sx: LongInt;
cx: Integer;
f: Single;
NewCol: TFPColor;
Col: TFPColor;
CurEntry: Pointer;
begin
if (w<=0) or (h<=0) or (image.Width=0) or (image.Height=0) then
exit;
xEntries:=nil;
yEntries:=nil;
HorzResized:=nil;
try
CreatePixelWeights(image.Width,w,xEntries,xEntrySize,xSupport);
CreatePixelWeights(image.Height,h,yEntries,yEntrySize,ySupport);
// create temporary buffer for the horizontally resized pixel for the
// current y line
GetMem(HorzResized,w*ySupport*SizeOf(TFPColor));
LastyEntry:=nil;
SrcStartY:=0;
for dy:=0 to h-1 do
begin
if dy=0 then
begin
yEntry:=yEntries;
SrcStartY:=PInteger(yEntry)^;
NewSupportLines:=ySupport;
end else
begin
LastyEntry:=yEntry;
LastSrcStartY:=SrcStartY;
inc(yEntry,yEntrySize);
SrcStartY:=PInteger(yEntry)^;
NewSupportLines:=SrcStartY-LastSrcStartY;
// move lines up
if (NewSupportLines>0) and (ySupport>NewSupportLines) then
System.Move(HorzResized[NewSupportLines*w],
HorzResized[0],
(ySupport-NewSupportLines)*w*SizeOf(TFPColor));
end;
// compute new horizontally resized line(s)
for sy:=ySupport-NewSupportLines to ySupport-1 do
begin
xEntry:=xEntries;
for dx:=0 to w-1 do
begin
sx:=PInteger(xEntry)^;
inc(xEntry,SizeOf(integer));
NewCol:= colTransparent;
for cx:=0 to xSupport-1 do
begin
f:=PSingle(xEntry)^;
inc(xEntry,SizeOf(Single));
Col:=image.Colors[sx+cx,SrcStartY+sy];
NewCol.red:=Min(NewCol.red+round(Col.red*f),$ffff);
NewCol.green:=Min(NewCol.green+round(Col.green*f),$ffff);
NewCol.blue:=Min(NewCol.blue+round(Col.blue*f),$ffff);
NewCol.alpha:=Min(NewCol.alpha+round(Col.alpha*f),$ffff);
end;
HorzResized[dx+sy*w]:=NewCol;
end;
end;
// compute new vertically resized line
for dx:=0 to w-1 do
begin
CurEntry:=yEntry+SizeOf(integer);
NewCol:=colTransparent;
for sy:=0 to ySupport-1 do
begin
f:=PSingle(CurEntry)^;
inc(CurEntry,SizeOf(Single));
Col:=HorzResized[dx+sy*w];
NewCol.red:=Min(NewCol.red+round(Col.red*f),$ffff);
NewCol.green:=Min(NewCol.green+round(Col.green*f),$ffff);
NewCol.blue:=Min(NewCol.blue+round(Col.blue*f),$ffff);
NewCol.alpha:=Min(NewCol.alpha+round(Col.alpha*f),$ffff);
end;
Canvas.Colors[x+dx,y+dy]:=NewCol;
end;
end;
finally
if xEntries<>nil then FreeMem(xEntries);
if yEntries<>nil then FreeMem(yEntries);
if HorzResized<>nil then FreeMem(HorzResized);
end;
end;
function TFPBaseInterpolation.Filter(x: double): double;
begin
Result:=x;
end;
function TFPBaseInterpolation.MaxSupport: double;
begin
Result:=1.0;
end;
{ TMitchelInterpolation }
function TMitchelInterpolation.Filter(x: double): double;
const
B = (1.0/3.0);
C = (1.0/3.0);
P0 = (( 6.0- 2.0*B )/6.0);
P2 = ((-18.0+12.0*B+ 6.0*C)/6.0);
P3 = (( 12.0- 9.0*B- 6.0*C)/6.0);
Q0 = (( 8.0*B+24.0*C)/6.0);
Q1 = (( -12.0*B-48.0*C)/6.0);
Q2 = (( 6.0*B+30.0*C)/6.0);
Q3 = (( - 1.0*B- 6.0*C)/6.0);
begin
if (x < -2.0) then
result := 0.0
else if (x < -1.0) then
result := Q0-x*(Q1-x*(Q2-x*Q3))
else if (x < 0.0) then
result := P0+x*x*(P2-x*P3)
else if (x < 1.0) then
result := P0+x*x*(P2+x*P3)
else if (x < 2.0) then
result := Q0+x*(Q1+x*(Q2+x*Q3))
else
result := 0.0;
end;
function TMitchelInterpolation.MaxSupport: double;
begin
result := 2.0;
end;
|