Bitmap Processing in C#

Undertake something that is difficult; it will do you good. Unless you try to do something beyond what you have already mastered, you will never grow. – Ronald E. Osborn
Bitmap Processing in C#

Need to crack a bitmap and dittle around with its pixels? I know there is a managed get pixel property on the bitmap object but that is SLOW if you have to work with a lot of pixels. After some digging around I have compiled a few examples together to make my ImagerBitmap Class. The class uses unmanaged C# and pointers to iterate over the pixels in an image to do stuff. Since unmanaged code is inherently dangerous everything is made private and only some static functions that perform the image filters are exposed. Some of the functions included are: a color Laplace filter (Laplace filters are used for edge detection), a grayscale Laplace filter, a subtraction filter, a set of functions that allow you to extract only the red or blue or green pixels, a filter to allow you to convert the image to grayscale, a filter to allow you to convert the image to black and white, 3x3 and 5x5 versions of Box, Binomial and Median filters. In addition using ChartDirector (http://www.advsofteng.com/) the ability to generate charts of pixel data has been implemented. The charts include Grayscale & Color Histogram, Vertical and Horizontal scan line. Last but not least the ability to dump all the pixel information to a text file. Here is the code:

 

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
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
using System;
using System.Drawing;
using System.Drawing.Imaging;
using System.Drawing.Drawing2D;
using ChartDirector;
using System.IO;
namespace Imager2
{
/// <summary>
/// This class provides methods to Resize and Apply Filters to bitmap images.
///
/// ideas from
/// http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dncscol/html/csharp11152001.asp
/// http://www.msnewsgroups.net/group/microsoft.public.dotnet.languages.csharp/topic9351.aspx
/// </summary>
public unsafe class ImagerBitmap
{
/// <summary>
/// This struct is used to hold the RGB values when we find a pixel using the pointer
/// </summary>
private struct PixelData
{
public byte Blue;
public byte Green;
public byte Red;
}
/// <summary>
/// This object contains pointer addressable information about the bitmap
/// </summary>
private BitmapData _bitmapData = null;
/// <summary>
/// The pointer to the upper left corner of the bitmap
/// </summary>
private byte* pBase = null;
private Bitmap _bitmap = null;
/// <summary>
/// Get the Image we are working with
/// </summary>
public Bitmap Bitmap
{
get
{
return _bitmap;
}
}
/// <summary>
/// Constructor
/// </summary>
/// <param name="b">Bitmap to use as the basis of the Imager</param>
private ImagerBitmap(Bitmap b)
{
if (b.PixelFormat != PixelFormat.Format24bppRgb)
{
//Convert the image into Format24bppRgb since our unmanaged code
//can walk that image type
Bitmap b2 = new Bitmap(b.Size.Width, b.Size.Height, PixelFormat.Format24bppRgb);
Graphics g = Graphics.FromImage(b2);
g.DrawImage(b, new Point(0, 0));
_bitmap = b2;
g.Dispose();
}
else
{
_bitmap = b;
}
LockBitmap();
}
/// <summary>
/// Load a pixel with color
/// </summary>
/// <param name="x">Column</param>
/// <param name="y">Row</param>
/// <param name="c">Color</param>
private void SetPixel(int x, int y, Color c)
{
PixelData* p = PixelAt(x, y);
p->Red = c.R;
p->Green = c.G;
p->Blue = c.B;
}
/// <summary>
/// Get a pixel
/// </summary>
/// <param name="x">Column</param>
/// <param name="y">Row</param>
/// <returns>Color</returns>
private Color GetPixel(int x, int y)
{
PixelData* p = PixelAt(x, y);
return Color.FromArgb((int)p->Red, (int)p->Green, (int)p->Blue);
}
/// <summary>
/// Get the Grey value for a give pixel
/// </summary>
/// <param name="column">Column</param>
/// <param name="row">Row</param>
/// <returns>Grey value for the pixel</returns>
private int GetGreyPixel(int column, int row)
{
return (int)((GetPixel(column, row).R * 0.3) + (GetPixel(column, row).G * 0.59)
+ (GetPixel(column, row).B * 0.11));
}
/// <summary>
/// Use the 2 most signifigant bits from each of the values in the RGB to get an in value
/// for the histogram
/// </summary>
/// <param name="column">Column</param>
/// <param name="row">Row</param>
/// <returns>Histogram Value</returns>
public int GetRGBHistogramValue(int column, int row)
{
Color c = GetPixel(column, row);
int val = 0;
int tmp = 0;
tmp = c.R;
if (tmp - 128 > 0)
{
tmp -= 128;
val += 32;
}
if (tmp - 64 > 0)
{
val += 16;
}
tmp = c.G;
if (tmp - 128 > 0)
{
tmp -= 128;
val += 8;
}
if (tmp - 64 > 0)
{
val += 4;
}
tmp = c.B;
if (tmp - 128 > 0)
{
tmp -= 128;
val += 2;
}
if (tmp - 64 > 0)
{
val += 1;
}
return val;
}
/// <summary>
/// Lock the bitmap so we can use the pointers to access it
/// </summary>
private void LockBitmap()
{
_bitmapData = _bitmap.LockBits(new Rectangle(0, 0, _bitmap.Width, _bitmap.Height),
ImageLockMode.ReadWrite, _bitmap.PixelFormat);
pBase = (Byte*)_bitmapData.Scan0.ToPointer();
}
/// <summary>
/// Get a pointer to a pixel
/// </summary>
/// <param name="x">Column</param>
/// <param name="y">Row</param>
/// <returns></returns>
private unsafe PixelData* PixelAt(int x, int y)
{
return (PixelData*)(pBase + y * _bitmapData.Stride + x * sizeof(PixelData));
}
/// <summary>
/// Unlock the bitmap to end the pointer access session
/// </summary>
private void UnlockBitmap()
{
_bitmap.UnlockBits(_bitmapData);
_bitmapData = null;
pBase = null;
}
/// <summary>
/// Get a 3x3 matrix of the pixles around the center
/// </summary>
/// <param name="row">Center Row</param>
/// <param name="column">Center Column</param>
/// <returns>3x3 matrix of the pixles around the center</returns>
private Color[,] Get3x3(int row, int column)
{
Color[,] c = new Color[3, 3];
c[0, 0] = this.GetPixel(column - 1, row - 1);
c[0, 1] = this.GetPixel(column - 1, row);
c[0, 2] = this.GetPixel(column - 1, row + 1);
c[1, 0] = this.GetPixel(column, row - 1);
c[1, 1] = this.GetPixel(column, row);
c[1, 2] = this.GetPixel(column, row + 1);
c[2, 0] = this.GetPixel(column + 1, row - 1);
c[2, 1] = this.GetPixel(column + 1, row);
c[2, 2] = this.GetPixel(column + 1, row + 1);
return c;
}
private int[,] GetGrey3x3(int row, int column)
{
int[,] c = new int[3, 3];
c[0, 0] = this.GetGreyPixel(column - 1, row - 1);
c[0, 1] = this.GetGreyPixel(column - 1, row);
c[0, 2] = this.GetGreyPixel(column - 1, row + 1);
c[1, 0] = this.GetGreyPixel(column, row - 1);
c[1, 1] = this.GetGreyPixel(column, row);
c[1, 2] = this.GetGreyPixel(column, row + 1);
c[2, 0] = this.GetGreyPixel(column + 1, row - 1);
c[2, 1] = this.GetGreyPixel(column + 1, row);
c[2, 2] = this.GetGreyPixel(column + 1, row + 1);
return c;
}
/// <summary>
/// Get at 5x5 matrix of the pixels around the center
/// </summary>
/// <param name="row">Center Row</param>
/// <param name="column">Center Column</param>
/// <returns>5x5 matrix of pixles around center</returns>
private Color[,] Get5x5(int row, int column)
{
Color[,] c = new Color[5, 5];
c[0, 0] = this.GetPixel(column - 2, row - 2);
c[0, 1] = this.GetPixel(column - 2, row - 1);
c[0, 2] = this.GetPixel(column - 2, row);
c[0, 3] = this.GetPixel(column - 2, row + 1);
c[0, 4] = this.GetPixel(column - 2, row + 2);
c[1, 0] = this.GetPixel(column - 1, row - 2);
c[1, 1] = this.GetPixel(column - 1, row - 1);
c[1, 2] = this.GetPixel(column - 1, row);
c[1, 3] = this.GetPixel(column - 1, row + 1);
c[1, 4] = this.GetPixel(column - 1, row + 2);
c[2, 0] = this.GetPixel(column, row - 2);
c[2, 1] = this.GetPixel(column, row - 1);
c[2, 2] = this.GetPixel(column, row);
c[2, 3] = this.GetPixel(column, row + 1);
c[2, 4] = this.GetPixel(column, row + 2);
c[3, 0] = this.GetPixel(column + 1, row - 2);
c[3, 1] = this.GetPixel(column + 1, row - 1);
c[3, 2] = this.GetPixel(column + 1, row);
c[3, 3] = this.GetPixel(column + 1, row + 1);
c[3, 4] = this.GetPixel(column + 1, row + 2);
c[4, 0] = this.GetPixel(column + 2, row - 2);
c[4, 1] = this.GetPixel(column + 2, row - 1);
c[4, 2] = this.GetPixel(column + 2, row);
c[4, 3] = this.GetPixel(column + 2, row + 1);
c[4, 4] = this.GetPixel(column + 2, row + 2);
return c;
}
/// <summary>
/// Perform laplace edge detection on the image
/// </summary>
/// <param name="b">Source Image</param>
/// <returns>Edges</returns>
public static Bitmap Laplace(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 1; column < i.Bitmap.Width - 1; column++)
{
for (int row = 1; row < i.Bitmap.Height - 1; row++)
{
Color[,] c = i.Get3x3(row, column);
int red = (((c[0, 0].R + c[0, 1].R + c[0, 2].R + c[1, 0].R + c[1, 2].R + c[2, 0].R
+ c[2, 1].R + c[2, 2].R) * -1) + (c[1, 1].R * 8))+128;
int green = (((c[0, 0].G + c[0, 1].G + c[0, 2].G + c[1, 0].G + c[1, 2].G
+ c[2, 0].G + c[2, 1].G + c[2, 2].G) * -1) + (c[1, 1].G * 8))+128;
int blue = (((c[0, 0].B + c[0, 1].B + c[0, 2].B + c[1, 0].B + c[1, 2].B + c[2, 0].B
+ c[2, 1].B + c[2, 2].B) * -1) + (c[1, 1].B * 8))+128;
if (red >= 128) red = 0; else red = 255;
if (green >= 128) green = 0; else green = 255;
if (blue >= 128) blue = 0; else blue = 255;
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
public static Bitmap LaplaceGreyscale(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 1; column < i.Bitmap.Width - 1; column++)
{
for (int row = 1; row < i.Bitmap.Height - 1; row++)
{
int[,] c = i.GetGrey3x3(row, column);
int val = (((c[0, 0] + c[0, 1] + c[0, 2] + c[1, 0] + c[1, 2] + c[2, 0] + c[2, 1]
+ c[2, 2]) * -1) + (c[1, 1] * 8)) + 128;
if (val >= 128) val = 0; else val = 255;
i2.SetPixel(column, row, Color.FromArgb(val, val, val));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}

/// <summary>
/// Subtract b2 from b1 and normalize the image
/// </summary>
/// <param name="b1">Image</param>
/// <param name="b2">Image</param>
/// <returns>Normalized Image</returns>
public static Bitmap Subtract(Bitmap b1, Bitmap b2)
{
if (b1.Width != b2.Width || b1.Height != b2.Height)
throw new Exception("Images not the same size cannot subtract");
ImagerBitmap i = new ImagerBitmap(b1.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b2.Clone() as Bitmap);
int[,] red = new int[i.Bitmap.Width, i.Bitmap.Height];
int[,] blue = new int[i.Bitmap.Width, i.Bitmap.Height];
int[,] green = new int[i.Bitmap.Width, i.Bitmap.Height];
int redMax = 0;
int redMin = 0;
int redRange = 0;
int blueMax = 0;
int blueMin = 0;
int blueRange = 0;
int greenMax = 0;
int greenMin = 0;
int greenRange = 0;
//fill the arrays with the subtracted values
//Keep track of the min and max values for later
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
Color c1 = i.GetPixel(column, row);
Color c2 = i2.GetPixel(column, row);
red[column, row] = c2.R - c1.R;
blue[column, row] = c2.B - c1.B;
green[column, row] = c2.G - c1.G;
if (red[column, row] > redMax) redMax = red[column, row];
if (red[column, row] < redMin) redMin = red[column, row];
if (blue[column, row] > blueMax) blueMax = blue[column, row];
if (blue[column, row] < blueMin) blueMin = blue[column, row];
if (green[column, row] > greenMax) greenMax = green[column, row];
if (green[column, row] < greenMin) greenMin = green[column, row];
}
}
//find the range of the min an max
redRange = Math.Abs(redMax - redMin);
blueRange = Math.Abs(blueMax - blueMin);
greenRange = Math.Abs(greenRange - greenMin);
//Normalize the values in the arrays and load the result image
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
if (redRange != 0)
red[column, row] = 255 - (((redMax - red[column, row]) * 255) / redRange);
if (blueRange != 0)
blue[column, row] = 255 - (((blueMax - blue[column, row]) * 255) / blueRange);
if (greenRange != 0)
green[column, row] = 255 - (((greenMax - green[column, row]) * 255) / greenRange);
if (red[column, row] < 0)
red[column, row] = 0;
if (blue[column, row] < 0)
blue[column, row] = 0;
if (green[column, row] < 0)
green[column, row] = 0;
i2.SetPixel(column, row, Color.FromArgb(red[column, row], green[column, row],
blue[column, row]));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Get the red pixels from the bitmap
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap GetRedBitmap(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
i.SetPixel(column, row, Color.FromArgb(i.GetPixel(column, row).R, 0, 0));
}
}
i.UnlockBitmap();
return i.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Get the Blue Pixes from the bitmap
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap GetBlueBitmap(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
i.SetPixel(column, row, Color.FromArgb(0, 0, i.GetPixel(column, row).B));
}
}
i.UnlockBitmap();
return i.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Get the green pixels from the image
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap GetGreenBitmap(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
i.SetPixel(column, row, Color.FromArgb(0, i.GetPixel(column, row).G, 0));
}
}
i.UnlockBitmap();
return i.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Make the image Grey scale
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap GetGreyScaleBitmap(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
int val = i.GetGreyPixel(column, row);
i.SetPixel(column, row, Color.FromArgb(val, val, val));
}
}
i.UnlockBitmap();
return i.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Make the image black and white
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap GetBlackAndWhiteBitmap(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
double[] histogram = new double[256];
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
histogram[i.GetGreyPixel(column, row)]++;
}
}
//find the position of the max value on the left
int leftK = 0;
for (int k = 0; k < 128; k++)
{
if (histogram[k] > histogram[leftK]) leftK = k;
}
//find the position of the max value on the right
int rightK = 0;
for (int k = 128; k < 256; k++)
{
if (histogram[k] > histogram[rightK]) rightK = k;
}
//find the min value between the 2 local maxes
int localMin = rightK;
for (int k = leftK; k < rightK; k++)
{
if (histogram[k] < histogram[localMin]) localMin = k;
}
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
int val = (i.GetPixel(column, row).R + i.GetPixel(column, row).G
+ i.GetPixel(column, row).B) / 3;
if (val > localMin)
val = 255;
else
val = 0;
i.SetPixel(column, row, Color.FromArgb(val, val, val));
}
}
i.UnlockBitmap();
return i.Bitmap.Clone() as Bitmap;
}
public static Bitmap GetBlackAndWhiteBitmap2(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
double[] histogram = new double[256];
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
histogram[i.GetGreyPixel(column, row)]++;
}
}
double k = b.Width * b.Height;
double half = k / 2;
int middle = 0;
while (k > half)
{
k = k - histogram[middle];
middle++;
}
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
int val = (i.GetPixel(column, row).R + i.GetPixel(column, row).G
+ i.GetPixel(column, row).B) / 3;
if (val > middle)
val = 255;
else
val = 0;
i.SetPixel(column, row, Color.FromArgb(val, val, val));
}
}
i.UnlockBitmap();
return i.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Perform a Box filter using a 3x3 Mask
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap Box3x3(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 1; column < i.Bitmap.Width - 1; column++)
{
for (int row = 1; row < i.Bitmap.Height - 1; row++)
{
Color[,] c = i.Get3x3(row, column);
int red = (c[0, 0].R + c[0, 1].R + c[0, 2].R + c[1, 0].R + c[1, 2].R + c[2, 0].R
+ c[2, 1].R + c[2, 2].R + c[1, 1].R) / 9;
int green = (c[0, 0].G + c[0, 1].G + c[0, 2].G + c[1, 0].G + c[1, 2].G + c[2, 0].G
+ c[2, 1].G + c[2, 2].G + c[1, 1].G) / 9;
int blue = (c[0, 0].B + c[0, 1].B + c[0, 2].B + c[1, 0].B + c[1, 2].B + c[2, 0].B
+ c[2, 1].B + c[2, 2].B + c[1, 1].B) / 9;
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Perform a Bionomial filter using a 3x3 Mask
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap Binomial3x3(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 1; column < i.Bitmap.Width - 1; column++)
{
for (int row = 1; row < i.Bitmap.Height - 1; row++)
{
Color[,] c = i.Get3x3(row, column);
int red = ((c[0, 0].R * 1) + (c[0, 1].R * 2) + (c[0, 2].R * 1) + (c[1, 0].R * 2)
+ (c[1, 1].R * 4) + (c[1, 2].R * 2) + (c[2, 0].R * 1) + (c[2, 1].R * 2)
+ (c[2, 2].R * 1)) / 16;
int green = ((c[0, 0].G * 1) + (c[0, 1].G * 2) + (c[0, 2].G * 1) + (c[1, 0].G * 2)
+ (c[1, 1].G * 4) + (c[1, 2].G * 2) + (c[2, 0].G * 1) + (c[2, 1].G * 2)
+ (c[2, 2].G * 1)) / 16;
int blue = ((c[0, 0].B * 1) + (c[0, 1].B * 2) + (c[0, 2].B * 1) + (c[1, 0].B * 2)
+ (c[1, 1].B * 4) + (c[1, 2].B * 2) + (c[2, 0].B * 1) + (c[2, 1].B * 2)
+ (c[2, 2].B * 1)) / 16;
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Perform a Median filter using a 3x3 mask
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap Median3x3(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 1; column < i.Bitmap.Width - 1; column++)
{
for (int row = 1; row < i.Bitmap.Height - 1; row++)
{
Color[,] c = i.Get3x3(row, column);
int red = Median(c[0, 0].R, c[0, 1].R, c[0, 2].R, c[1, 0].R, c[1, 1].R, c[1, 2].R,
c[2, 0].R, c[2, 1].R, c[2, 2].R);
int green = Median(c[0, 0].G, c[0, 1].G, c[0, 2].G, c[1, 0].G, c[1, 1].G,
c[1, 2].G, c[2, 0].G, c[2, 1].G, c[2, 2].G);
int blue = Median(c[0, 0].B, c[0, 1].B, c[0, 2].B, c[1, 0].B, c[1, 1].B, c[1, 2].B,
c[2, 0].B, c[2, 1].B, c[2, 2].B);
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Perform a Box filter using a 5x5 Mask
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap Box5x5(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 2; column < i.Bitmap.Width - 2; column++)
{
for (int row = 2; row < i.Bitmap.Height - 2; row++)
{
Color[,] c = i.Get5x5(row, column);
int red = (c[0, 0].R + c[0, 1].R + c[0, 2].R + c[0, 3].R + c[0, 4].R + c[1, 0].R
+ c[1, 1].R + c[1, 2].R + c[1, 3].R + c[1, 4].R + c[2, 0].R + c[2, 1].R
+ c[2, 2].R + c[2, 3].R + c[2, 4].R + c[3, 0].R + c[3, 1].R + c[3, 2].R
+ c[3, 3].R + c[3, 4].R + c[4, 0].R + c[4, 1].R + c[4, 2].R + c[4, 3].R
+ c[4, 4].R) / 25;
int green = (c[0, 0].G + c[0, 1].G + c[0, 2].G + c[0, 3].G + c[0, 4].G + c[1, 0].G
+ c[1, 1].G + c[1, 2].G + c[1, 3].G + c[1, 4].G + c[2, 0].G + c[2, 1].G
+ c[2, 2].G + c[2, 3].G + c[2, 4].G + c[3, 0].G + c[3, 1].G + c[3, 2].G
+ c[3, 3].G + c[3, 4].G + c[4, 0].G + c[4, 1].G + c[4, 2].G + c[4, 3].G
+ c[4, 4].G) / 25;
int blue = (c[0, 0].B + c[0, 1].B + c[0, 2].B + c[0, 3].B + c[0, 4].B + c[1, 0].B
+ c[1, 1].B + c[1, 2].B + c[1, 3].B + c[1, 4].B + c[2, 0].B + c[2, 1].B
+ c[2, 2].B + c[2, 3].B + c[2, 4].B + c[3, 0].B + c[3, 1].B + c[3, 2].B
+ c[3, 3].B + c[3, 4].B + c[4, 0].B + c[4, 1].B + c[4, 2].B + c[4, 3].B
+ c[4, 4].B) / 25;
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Perform a Binomial filter using a 5x5 Mask
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap Binomial5x5(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 2; column < i.Bitmap.Width - 2; column++)
{
for (int row = 2; row < i.Bitmap.Height - 2; row++)
{
Color[,] c = i.Get5x5(row, column);
int red = ((c[0, 0].R * 1) + (c[0, 1].R * 4) + (c[0, 2].R * 6) + (c[0, 3].R * 4)
+ (c[0, 4].R * 1) + (c[1, 0].R * 4) + (c[1, 1].R * 16) + (c[1, 2].R * 24)
+ (c[1, 3].R * 16) + (c[1, 4].R * 4) + (c[2, 0].R * 6) + (c[2, 1].R * 24)
+ (c[2, 2].R * 36) + (c[2, 3].R * 24) + (c[2, 4].R * 6) + (c[3, 0].R * 4)
+ (c[3, 1].R * 16) + (c[3, 2].R * 24) + (c[3, 3].R * 16) + (c[3, 4].R * 4)
+ (c[4, 0].R * 1) + (c[4, 1].R * 4) + (c[4, 2].R * 6) + (c[4, 3].R * 4)
+ (c[4, 4].R * 1)) / 256;
int green = ((c[0, 0].G * 1) + (c[0, 1].G * 4) + (c[0, 2].G * 6) + (c[0, 3].G * 4)
+ (c[0, 4].G * 1) + (c[1, 0].G * 4) + (c[1, 1].G * 16) + (c[1, 2].G * 24)
+ (c[1, 3].G * 16) + (c[1, 4].G * 4) + (c[2, 0].G * 6) + (c[2, 1].G * 24)
+ (c[2, 2].G * 36) + (c[2, 3].G * 24) + (c[2, 4].G * 6) + (c[3, 0].G * 4)
+ (c[3, 1].G * 16) + (c[3, 2].G * 24) + (c[3, 3].G * 16) + (c[3, 4].G * 4)
+ (c[4, 0].G * 1) + (c[4, 1].G * 4) + (c[4, 2].G * 6) + (c[4, 3].G * 4)
+ (c[4, 4].G * 1)) / 256;
int blue = ((c[0, 0].B * 1) + (c[0, 1].B * 4) + (c[0, 2].B * 6) + (c[0, 3].B * 4)
+ (c[0, 4].B * 1) + (c[1, 0].B * 4) + (c[1, 1].B * 16) + (c[1, 2].B * 24)
+ (c[1, 3].B * 16) + (c[1, 4].B * 4) + (c[2, 0].B * 6) + (c[2, 1].B * 24)
+ (c[2, 2].B * 36) + (c[2, 3].B * 24) + (c[2, 4].B * 6) + (c[3, 0].B * 4)
+ (c[3, 1].B * 16) + (c[3, 2].B * 24) + (c[3, 3].B * 16) + (c[3, 4].B * 4)
+ (c[4, 0].B * 1) + (c[4, 1].B * 4) + (c[4, 2].B * 6) + (c[4, 3].B * 4)
+ (c[4, 4].B * 1)) / 256;
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Perform a Median fiter using a 5x5 Mask
/// </summary>
/// <param name="b">Image to Process</param>
/// <returns>Filtered Image</returns>
public static Bitmap Median5x5(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
ImagerBitmap i2 = new ImagerBitmap(b.Clone() as Bitmap);
for (int column = 2; column < i.Bitmap.Width - 2; column++)
{
for (int row = 2; row < i.Bitmap.Height - 2; row++)
{
Color[,] c = i.Get5x5(row, column);
int red = Median(c[0, 0].R, c[0, 1].R, c[0, 2].R, c[0, 3].R, c[0, 4].R, c[1, 0].R,
c[1, 1].R, c[1, 2].R, c[1, 3].R, c[1, 4].R, c[2, 0].R, c[2, 1].R, c[2, 2].R,
c[2, 3].R, c[2, 4].R, c[3, 0].R, c[3, 1].R, c[3, 2].R, c[3, 3].R, c[3, 4].R,
c[4, 0].R, c[4, 1].R, c[4, 2].R, c[4, 3].R, c[4, 4].R);
int green = Median(c[0, 0].G, c[0, 1].G, c[0, 2].G, c[0, 3].G, c[0, 4].G, c[1, 0].G,
c[1, 1].G, c[1, 2].G, c[1, 3].G, c[1, 4].G, c[2, 0].G, c[2, 1].G, c[2, 2].G,
c[2, 3].G, c[2, 4].G, c[3, 0].G, c[3, 1].G, c[3, 2].G, c[3, 3].G, c[3, 4].G,
c[4, 0].G, c[4, 1].G, c[4, 2].G, c[4, 3].G, c[4, 4].G);
int blue = Median(c[0, 0].B, c[0, 1].B, c[0, 2].B, c[0, 3].B, c[0, 4].B, c[1, 0].B,
c[1, 1].B, c[1, 2].B, c[1, 3].B, c[1, 4].B, c[2, 0].B, c[2, 1].B, c[2, 2].B,
c[2, 3].B, c[2, 4].B, c[3, 0].B, c[3, 1].B, c[3, 2].B, c[3, 3].B, c[3, 4].B,
c[4, 0].B, c[4, 1].B, c[4, 2].B, c[4, 3].B, c[4, 4].B);
i2.SetPixel(column, row, Color.FromArgb(red, green, blue));
}
}
i.UnlockBitmap();
i2.UnlockBitmap();
return i2.Bitmap.Clone() as Bitmap;
}
/// <summary>
/// Find the Median value in an array of int's
/// </summary>
/// <param name="values">Array of values</param>
/// <returns>Median value</returns>
private static int Median(params int[] values)
{
Array.Sort(values);
return values[((values.Length - 1) / 2) + 1];
}
/// <summary>
/// Resize an image
/// </summary>
/// <param name="b">Image to resize</param>
/// <param name="width">Width in pixels</param>
/// <param name="height">Height in pixels</param>
/// <returns>New Image</returns>
public static Bitmap Resize(Bitmap b, int width, int height)
{
Bitmap b2 = new Bitmap(width, height, PixelFormat.Format24bppRgb);
Graphics g = Graphics.FromImage(b2);
g.DrawImage(b, new Rectangle(0, 0, width, height), 0, 0, b.Width, b.Height,
GraphicsUnit.Pixel);
g.Dispose();
return b2;
}
/// <summary>
/// Generate a greyscale histogram chart from the bitmap
/// </summary>
/// <param name="b">Image to use</param>
/// <returns>Histogram chart</returns>
public static Bitmap GenerateGreyscaleHistogram(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
double[] histogram = new double[256];
string[] lbls = new string[256];
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
histogram[i.GetGreyPixel(column, row)]++;
}
}
i.UnlockBitmap();
for (int j = 0; j < 256; j++)
{
if ((j % 30) == 0)
{
lbls[j] = j.ToString();
}
else
{
lbls[j] = string.Empty;
}
}
XYChart c = new XYChart(b.Width + 60, b.Height + 60);
c.setPlotArea(40, 40, b.Width - 20, b.Height - 20);
c.addTitle("Greyscale Historgram", "Arial Bold", 10).setBackground(
Chart.metalColor(0x9999ff), -1, 1);
c.addBarLayer(histogram);
c.xAxis().setLabels(lbls);
return c.makeImage() as Bitmap;
}
/// <summary>
/// Generate a histogram chart from the bitmap
/// </summary>
/// <param name="b">Image to use</param>
/// <returns>Histogram chart</returns>
public static Bitmap GenerateHistogram(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
double[] histogram = new double[64];
string[] lbls = new string[64];
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
histogram[i.GetRGBHistogramValue(column, row)]++;
}
}
i.UnlockBitmap();
for (int j = 0; j < 64; j++)
{
if ((j % 10) == 0)
{
lbls[j] = j.ToString();
}
else
{
lbls[j] = string.Empty;
}
}
XYChart c = new XYChart(b.Width + 60, b.Height + 60);
c.setPlotArea(40, 40, b.Width - 20, b.Height - 20);
c.addTitle("Color Historgram", "Arial Bold", 10).setBackground(
Chart.metalColor(0x9999ff), -1, 1);
c.addBarLayer(histogram);
c.xAxis().setLabels(lbls);
return c.makeImage() as Bitmap;
}
/// <summary>
/// Generate a Chart of a Scan line
/// </summary>
/// <param name="b">Image to use</param>
/// <param name="row">Row to use</param>
/// <returns>Scan Line Chart</returns>
public static Bitmap GenerateScanLineChart(Bitmap b, int row)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
double[] luminance = new double[b.Width];
string[] lbls = new string[b.Width];
double max = double.MinValue;
double min = double.MaxValue;
for (int column = 0; column < i.Bitmap.Width; column++)
{
luminance[column] = i.GetGreyPixel(column, row);
if (luminance[column] > max) max = luminance[column];
if (luminance[column] < min) min = luminance[column];
if ((column % 40) == 0)
{
lbls[column] = column.ToString();
}
else
{
lbls[column] = string.Empty;
}
}
i.UnlockBitmap();
XYChart c = new XYChart(b.Width + 60, b.Height + 60);
c.setPlotArea(40, 40, b.Width - 20, b.Height - 20);
c.addTitle(string.Format("Pixel Luminance for Scan Line {0}, STF {1:0.00}",
row.ToString(),
(max - min) / (max + min)), "Arial Bold", 10).setBackground(
Chart.metalColor(0x9999ff), -1, 1);
c.addLineLayer(luminance);
c.xAxis().setLabels(lbls);
return c.makeImage() as Bitmap;
}
/// <summary>
/// Generate a Chart of a Vertical Scan line
/// </summary>
/// <param name="b">Image to use</param>
/// <param name="column">Column to use</param>
/// <returns>Scan Line Chart</returns>
public static Bitmap GenerateVerticalScanLineChart(Bitmap b, int col)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
double[] luminance = new double[b.Height];
string[] lbls = new string[b.Height];
for (int row = 0; row < i.Bitmap.Height; row++)
{
luminance[row] = i.GetGreyPixel(col, row);
if ((row % 40) == 0)
{
lbls[row] = row.ToString();
}
else
{
lbls[row] = string.Empty;
}
}
i.UnlockBitmap();
XYChart c = new XYChart(b.Width + 60, b.Height + 60);
c.setPlotArea(40, 40, b.Width - 20, b.Height - 20);
c.addTitle("Pixel Luminance for Vertical Scan Line " + col.ToString(),
"Arial Bold", 10).setBackground(
Chart.metalColor(0x9999ff), -1, 1);
c.addLineLayer(luminance);
c.xAxis().setLabels(lbls);
return c.makeImage() as Bitmap;
}
public static void GenerateExcelFile(Bitmap b)
{
ImagerBitmap i = new ImagerBitmap(b.Clone() as Bitmap);
string fileName = "output.txt";
int f = 0;
using (StreamWriter sw = new StreamWriter(fileName, false))
{
sw.WriteLine("{0}/t{1}/t{2}/t{3}/t{4}/t{5}/t{6}", "Index", "Row", "Column", "Red",
"Green", "Blue", "Gray");
for (int column = 0; column < i.Bitmap.Width; column++)
{
for (int row = 0; row < i.Bitmap.Height; row++)
{
f++;
Color c = i.GetPixel(column, row);
int g = i.GetGreyPixel(column, row);
sw.WriteLine("{0}/t{1}/t{2}/t{3}/t{4}/t{5}/t{6}", f,
row, column, c.R, c.G, c.B, g);
}
}
}
i.UnlockBitmap();
System.Diagnostics.Process.Start(fileName);
}
}
}
 

  • 0
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值