Click here to Skip to main content
15,883,901 members
Articles / Multimedia / GDI+

Why the use of GetPixel and SetPixel is so inefficient!

Rate me:
Please Sign up or sign in to vote.
4.65/5 (12 votes)
8 Jan 2018CPOL3 min read 89.5K   17   16
Couple of seconds to process a one megapixel picture… what the hell?

The Bitmap class provides two simple methods: GetPixel and SetPixel used respectively to retrieve a point of image (as the Color structure) and set a point of image. The following code illustrates how to retrieve/set all the pixels in a bitmap:

C#
private void GetSetPixel(Bitmap image) {
   for (int x = 0; x < image.Width; x++) {
      for (int y = 0; y < image.Height; y++) {
         Color pixel = image.GetPixel(x, y);
         image.SetPixel(x, y, Color.Black);
      }
   } 
}

As shown, review and modification of pixels is extremely simple. Unfortunately, behind the simplicity of the code lies a serious performance trap. While for a small number of references to image points, the speed at which GetPixel and SetPixel work is good enough, for larger images it is not the case. The graph presented below can serve as a proof of that. It shows the results of 10 tests* which consisted of 10-fold invocation of previously shown GetSetPixel method for images 100x100 and 1000x1000 pixels in size.

Results of speed testing Bitmap's GetPixel and SetPixel methods

 

The average test time for an image measuring 100 by 100 pixels was 543 milliseconds. This speed is acceptable if the image processing is not done frequently. The performance problem is, however, clearly visible when you try to use an image of size 1000 per 1000 pixels. The execution of the test in this case takes an average of more than 41 seconds - more than 4 sec. on a single call to GetSetPixel (seriously!).

Why so slow?

The low efficiency is due to the fact that access to the pixel is not a simple reference to a memory area. Each getting or setting of color is associated with the invocation of a .NET Framework method, which is a wrapper for a native function contained in gdiplus.dll. This call is through the mechanism of P/Invoke (Platform Invocation), which is used to communicate from managed code to unmanaged API (an API outside of the .NET Framework). So for a bitmap of 1000x1000 pixels, there will be 1 million calls to the GetPixel method that besides the validation of parameters uses the native GdipBitmapGetPixel function. Before returning the color information, the GDI+ function has to perform such operations as calculating the position of bytes responsible for the description of the desired pixel… A similar situation occurs in the case of the SetPixel method.

Look at the following code of the Bitmap.GetPixel method obtained with the .NET Reflector (System.Drawing.dll, .NET Framework 2.0):

C#
public Color GetPixel(int x, int y) {
   int argb = 0;
   if ((x < 0) || (x >= base.Width)) {
      throw new ArgumentOutOfRangeException("x", SR.GetString("ValidRangeX"));
   }
   if ((y < 0) || (y >= base.Height)) {
      throw new ArgumentOutOfRangeException("y", SR.GetString("ValidRangeY"));
   }
   
   int status = SafeNativeMethods.Gdip.GdipBitmapGetPixel
    (new HandleRef(this, base.nativeImage), x, y, out argb);
   if (status != 0) {
      throw SafeNativeMethods.Gdip.StatusException(status);
   }
   return Color.FromArgb(argb);
}

Here is the import of the GDI + function:

C#
[DllImport("gdiplus.dll", CharSet=CharSet.Unicode, SetLastError=true, 
ExactSpelling=true)]
internal static extern int GdipBitmapGetPixel(HandleRef bitmap, int x, int y, out int argb);

* I have tested on this laptop: HP Pavilion dv5, AMD Turion X2 Dual-Core Mobile RM-70, 3 GB RAM, Vista Home Premium

Update (2013-07-10): Unfortunately I haven't found time to write an article about a solution to this performance problem but there are some useful hints in my comment.

Update (2013-11-07): I've written an article (...finally) about fast pixel operations. No need to use crappy Get/SetPixel anymore :) Click here.

Update (2018-01-08): If you really want to do some complex and efficient image processing then you should use specialized library like OpenCV. Few months ago I've written "Detecting a Drone - OpenCV in .NET for Beginners (Emgu CV 3.2, Visual Studio 2017)" blog post series that will help you do it...

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Poland Poland

Comments and Discussions

 
PraiseThanks for good post! Pin
Pioner_hero14-Feb-18 2:07
Pioner_hero14-Feb-18 2:07 
GeneralRe: Thanks for good post! Pin
morzel14-Feb-18 4:33
morzel14-Feb-18 4:33 
Praisemy rating 5 out of 5 Pin
Erasmus218-Jan-18 18:28
Erasmus218-Jan-18 18:28 
GeneralMy vote of 5 Pin
GregoryW11-Jul-13 2:40
GregoryW11-Jul-13 2:40 
Thanks for an advice. Pozdr;)
GeneralMy vote of 5 Pin
Volynsky Alex10-Jun-13 1:30
professionalVolynsky Alex10-Jun-13 1:30 
QuestionFast access Pin
YvesDaoust9-Jun-13 23:34
YvesDaoust9-Jun-13 23:34 
AnswerRe: Fast access Pin
morzel10-Jun-13 0:21
morzel10-Jun-13 0:21 
GeneralRe: Fast access Pin
KP Lee19-Jun-13 19:11
KP Lee19-Jun-13 19:11 
GeneralRe: Fast access Pin
morzel20-Jun-13 1:26
morzel20-Jun-13 1:26 
GeneralRe: Fast access Pin
KP Lee20-Jun-13 20:28
KP Lee20-Jun-13 20:28 
GeneralRe: Fast access Pin
Klaus-Werner Konrad11-Jul-13 3:16
Klaus-Werner Konrad11-Jul-13 3:16 
QuestionWorkaround would be useful Pin
MR_SAM_PIPER18-Jun-12 13:43
MR_SAM_PIPER18-Jun-12 13:43 
AnswerRe: Workaround would be useful Pin
L Viljoen19-Jun-12 3:17
professionalL Viljoen19-Jun-12 3:17 
AnswerRe: Workaround would be useful - code sample Pin
morzel20-Jun-12 4:47
morzel20-Jun-12 4:47 
GeneralMy vote of 5 Pin
SledgeHammer0118-Jun-12 10:21
SledgeHammer0118-Jun-12 10:21 
GeneralRe: My vote of 5 Pin
WiStRoM11-Jul-13 4:49
WiStRoM11-Jul-13 4:49 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.