Menu

[r1262]: / externals / efg2 / HistogramLibrary.pas  Maximize  Restore  History

Download this file

418 lines (336 with data), 9.9 kB

  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
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
{ Histogram and Image Statistics Library
Assumes shades-of-gray images but stored in pf24bit bitmap to avoid
working with palettes.
Earl F. Glynn, April 1998. Modified November 1998.
}
{ We adapted some routines for make them supporting GR32.
-- Ma Xiaoguang and Ma Xiaoming }
unit HistogramLibrary;
{$WARN UNSAFE_CODE OFF}
interface
uses
Windows, // TRGBTriple
Graphics, // TCanvas
GR32;
type
THistoArray = array [Byte] of Integer;
// RGB color space V from HSV color space Intensity "plane"
TColorPlane = (cpRed,
cpGreen,
cpBlue,
cpValue,
cpIntensity,
cpCyan,
cpMagenta,
cpYellow);
TRGBHistoArray = record
Red : THistoArray;
Green : THistoArray;
Blue : THistoArray;
Intensity: THistoArray;
end;
THistogram = class(TObject)
private
FHistogram: THistoArray;
function GetCount: Integer;
public
constructor Create;
procedure Clear;
procedure Draw(const Canvas: TCanvas);
procedure Increment(const Index: Byte);
function GetPercentileLevel(const Percentile: Double): Byte;
procedure GetStatistics(var n: Integer; var Minimum, Maximum: Byte;
var Mode, Median: Byte; var Mean, StandardDeviation: Double;
var Skewness, Kurtosis: Double);
property Frequency: THistoArray read FHistogram write FHistogram;
property Count : Integer read GetCount;
end;
procedure GetHistogram(const ColorPlane: TColorPlane;
const Bitmap: TBitmap32; var Histogram: THistogram);
implementation
uses
Math, // MaxIntValue, IntPwr
SysUtils; // pByteArray, Exception
const
MaxPixelCount = 65536;
NaN = 0.0/0.0; // Tricky way to define NaN
type
EHistogramError = class(Exception);
EStatisticsError = class(Exception);
// For pf24bit Scanlines
pRGBTripleArray = ^TRGBTripleArray;
TRGBTripleArray = array [0..MaxPixelCount - 1] of TRGBTriple;
{ THistogram }
// This Histogram class is specialized for image processing applications.
// The frequency distribution is assumed to be for values ONLY in the
// range 0..255.
function THistogram.GetCount: Integer;
var
i: Byte;
begin
Result := 0;
for i := Low(THistoArray) to High(THistoArray) do
begin
Inc(Result, FHistogram[i]);
end;
end;
constructor THistogram.Create;
begin
Clear;
end;
procedure THistogram.Clear;
var
i: Byte;
begin
for i := Low(THistoArray) to High(THistoArray) do
begin
FHistogram[i] := 0;
end;
end;
function THistogram.GetPercentileLevel(const Percentile: Double): Byte;
var
Continue : Boolean;
CumulativeCount, n : Integer;
CumulativeFraction, Target: Double;
Level : Byte;
begin
Target := Percentile / 100.0; // Target is fraction, not percentage
n := GetCount;
Level := Low(THistoArray);
CumulativeCount := 0;
Continue := True;
while Continue do
begin
CumulativeCount := CumulativeCount + FHistogram[Level];
CumulativeFraction := CumulativeCount / n;
Continue := (CumulativeFraction < Target) and ( Level < High(THistoArray) - 1 );
if Continue then
begin
Inc(Level);
end;
end;
Result := Level
end;
procedure THistogram.GetStatistics(var n: Integer; var Minimum, Maximum: Byte;
var Mode, Median: Byte; var Mean, StandardDeviation: Double;
var Skewness, Kurtosis: Double);
var
i : Byte;
Cumulative, MaxFrequency: Integer;
m2, m3, m3Sum, m4, m4Sum: Extended;
x, xSum, xSqrSum : Extended; // Use floats to avoid integer overflow
begin
n := 0;
Minimum := 0;
while (FHistogram[Minimum] = 0) and (Minimum < 255) do
begin
Inc(Minimum);
end;
Maximum := 255;
while (FHistogram[Maximum] = 0) and (Maximum > 0) do
begin
Dec(Maximum);
end;
// Mode is value with highest frequency.
// For now, don't worry about a "tie".
Mode := Minimum;
MaxFrequency := FHistogram[Minimum];
for i := Minimum {+1} to Maximum do // Not clear why "+1" here causes
begin // runtime problem
if FHistogram[i] > MaxFrequency then
begin
Mode := i;
MaxFrequency := FHistogram[i];
end;
end;
// Calculate Mean and Standard Deviation
xSum := 0.0;
xSqrSum := 0.0;
for i := Minimum to Maximum do
begin
Inc(n, FHistogram[i]);
x := i;
xSum := xSum + FHistogram[i] * x;
xSqrSum := xSqrSum + FHistogram[i] * Sqr(x);
end;
if n = 0 then
begin
Mean := NaN;
end
else
begin
Mean := xSum / n;
end;
if n < 2 then
begin
StandardDeviation := NaN;
Skewness := 0.0;
Kurtosis := 0.0;
end
else
begin
StandardDeviation := Sqrt( ( xSqrSum - n * Sqr(Mean) ) / (n - 1) );
// Standard Deviation is related to moment M2
m2 := Sqr(StandardDeviation) * (n - 1) / n;
// Calculate third and fourth moments
m3Sum := 0.0;
m4Sum := 0.0;
for i := Minimum to Maximum do
begin
x := i;
m3Sum := m3Sum + FHistogram[i] * IntPower(x - Mean, 3);
m4Sum := m4Sum + FHistogram[i] * IntPower(x - Mean, 4);
end;
m3 := m3Sum / n;
m4 := m4Sum / n;
if m2 = 0.0 then
begin
Skewness := NaN;
Kurtosis := 0.0
end
else
begin
Skewness := m3 / Power(m2, 1.5);
Kurtosis := m4 / Sqr(m2)
end;
end;
// Median is value with half of values above and below.
Cumulative := 0;
i := Minimum;
while (Cumulative < n div 2) and (i < 255) do
begin
Inc(Cumulative, FHistogram[i]);
if Cumulative < n div 2 then // fix for when all 0s
begin
Inc(i);
end;
end;
Median := i;
end;
procedure THistogram.Increment(const Index: Byte);
begin
Inc(FHistogram[Index])
end;
// Draw Histogram on specified Canvas, assumed to have
// a width that is a multiple of 256 (for best results).
procedure THistogram.Draw(const Canvas: TCanvas);
const
MajorTickSize = 8;
var
BarLength, Delta, i, j, Index: Integer;
Width, Height, MaxValue : Integer;
Color : TColor;
Factor : Double;
begin
{$RANGECHECKS OFF}
Height := Canvas.ClipRect.Bottom;
Width := Canvas.ClipRect.Right;
MaxValue := MaxIntValue(Self.Frequency);
Factor := Width / 256;
// For now only paint on a canvas exactly 256 pixels wide. If
// MaxValue is zero, array was not filled in correctly and is ignored.
if MaxValue > 0 then
begin
for i := 0 to Width - 1 do
begin
// In general, Width should be multiple of 255 + 1
Index := Round(i / Factor);
Index := MinIntValue( [255, Index] );
Color := RGB(Index, Index, Index);
Canvas.Pen.Color := Color;
BarLength := Round(Height * Self.Frequency[Index] / MaxValue);
Canvas.MoveTo(i, Height - 1);
Canvas.LineTo(i, Height - 1 - BarLength)
end;
Canvas.Pen.Color := clRed;
// Vertical Lines for visual estimation
for i := 0 to 25 do
begin
Canvas.MoveTo( Round(10 * i * Factor), Height - 1 );
if i mod 5 = 0 then
begin
Delta := MajorTickSize;
end
else
begin
Delta := MajorTickSize div 2;
end;
Canvas.LineTo( Round(10 * i * Factor), Height - 1 - Delta);
end;
// Horizontal Lines
for j := 1 to 4 do
begin
Canvas.MoveTo( 0, j * Height div 5);
Canvas.LineTo(Width - 1, j * Height div 5);
end;
Canvas.Brush.Style := bsClear;
Canvas.Font.Color := clRed;
Canvas.TextOut( 2, 2, 'Max = ' + IntToStr(MaxValue) );
Canvas.TextOut( 2, Height - Canvas.TextHeight('X') - MajorTickSize, '0' );
Canvas.TextOut( Width - Canvas.TextWidth('250 '),
Height - Canvas.TextHeight('X') - MajorTickSize, '250' );
end;
{$RANGECHECKS ON}
end;
procedure GetHistogram(const ColorPlane: TColorPlane; const Bitmap: TBitmap32;
var Histogram: THistogram);
var
i, Index : Integer;
a, r, g, b: Byte;
p : PColor32;
begin
Histogram.Clear;
p := @Bitmap.Bits[0];
for i := 0 to Bitmap.Width * Bitmap.Height - 1 do
begin
a := p^ shr 24 and $FF;
if a > 0 then
begin
r := p^ shr 16 and $FF;
g := p^ shr 8 and $FF;
b := p^ and $FF;
case ColorPlane of
// RGB Color Space
cpRed:
begin
Index := r;
end;
cpGreen:
begin
Index := g;
end;
cpBlue:
begin
Index := b;
end;
// CMY Color Space
cpCyan:
begin
Index := 255 - r;
end;
cpMagenta:
begin
Index := 255 - g;
end;
cpYellow:
begin
Index := 255 - b;
end;
// V from HSV Color Space
cpValue:
begin
Index := MaxIntValue([r, g, b]);
end;
cpIntensity:
begin
Index := (r + g + b) div 3;
end;
else
Index := 0; // should never happen; avoid compiler warning
end;
Histogram.Increment(Index)
end;
Inc(p);
end;
end;
end.
MongoDB Logo MongoDB