Converting a Grayscale image to black&white using Aforge.Net

16,885

Solution 1

Use the Threshold Class to convert the image to black and white.

 // create filter
Threshold filter = new Threshold( 100 );
// apply the filter
filter.ApplyInPlace( image );

Details of the Threshold Class can be found at Aforge.

The filter does image binarization using specified threshold value. All pixels with intensities equal or higher than threshold value are converted to white pixels. All other pixels with intensities below threshold value are converted to black pixels. The filter accepts 8 and 16 bpp grayscale images for processing. Note:Since the filter can be applied as to 8 bpp and to 16 bpp images, the ThresholdValue value should be set appropriately to the pixel format. In the case of 8 bpp images the threshold value is in the [0, 255] range, but in the case of 16 bpp images the threshold value is in the [0, 65535] range.

Solution 2

Try these three thresholding techniques. Sample snippets are given in the links.

Otsu : http://www.aforgenet.com/framework/docs/html/b2bd54da-46c2-cb64-3577-0962d8f56554.htm

SIS : http://www.aforgenet.com/framework/docs/html/39e861e0-e4bb-7e09-c067-6cbda5d646f3.htm

Iterative : http://www.aforgenet.com/framework/docs/html/e01406a7-511d-ae4d-79b6-5f7eba523824.htm

Im sure these links will give you a bit more exposure on converting a greyscale image to black and white which is known as binarizing.

Share:
16,885
Mr.Noob
Author by

Mr.Noob

Updated on June 13, 2022

Comments

  • Mr.Noob
    Mr.Noob about 2 years

    I am quite new to Aforge.Net and I am looking for a way to convert a greyscale image to black and white. I couldnt really find any support on it?

    I managed to convert a normal image to a GrayScale bye applying a Grayscale filter. but i couldnt find anything regarding the black and white converion

    Can someone give me a hand with it please.

  • Mr.Noob
    Mr.Noob about 12 years
    Hi Sharkz, thanks for your answer i believe it should work. just a quick question what do you mean by 8bpp and 16bpp grayscale images?
  • Sharkz
    Sharkz about 12 years
    Bits per pixel in short bpp - it tells how many bits to be used for the representation of one pixel. The higher the number the more the range of color displayed by the image. This link visualizes the effects on an image changing its bpp.
  • Mr.Noob
    Mr.Noob almost 11 years
    THanks for your help @hirosht I managed to sort all my issues :)