当前位置:   article > 正文

vb.net 教程 5-13 图像处理之像素处理 6 图像的二值化_vb.net 图片二值化

vb.net 图片二值化

版权声明:本文为博主原创文章,转载请在显著位置标明本文出处以及作者网名,未经作者允许不得用于商业目的。
这篇文章谈谈图像的二值化,也就是将彩色图像转为黑白图像。

步骤是:

彩色图像的灰度化,根据灰度和阈值来确定颜色是黑色还是白色。

通常情况下将阈值设置为128:

  1. '黑白1
  2. Private Sub btn2Color_Click(sender As Object, e As EventArgs) Handles btn2Color1.Click
  3. Dim pSourceColor As Color
  4. Dim pDestColor As Color
  5. Dim destImg As New Bitmap(sourceImg.Width, sourceImg.Height)
  6. Dim R, G, B As Integer
  7. Dim AvgColor As Integer
  8. For i As Integer = 0 To sourceImg.Width - 1
  9. For j As Integer = 0 To sourceImg.Height - 1
  10. pSourceColor = sourceImg.GetPixel(i, j)
  11. R = pSourceColor.R
  12. G = pSourceColor.G
  13. B = pSourceColor.B
  14. AvgColor = (R + G + B) / 3
  15. If AvgColor >= 128 Then AvgColor = 255 Else AvgColor = 0
  16. pDestColor = Color.FromArgb(AvgColor, AvgColor, AvgColor)
  17. destImg.SetPixel(i, j, pDestColor)
  18. Next
  19. Next
  20. picDest.Image = destImg
  21. End Sub

处理后的图像如下:

可以看出选择128作为阈值实际并不是很好,网上有大量的求阈值的方法,比如大律法等,下面我采用的是一种比较简单的算法:

  1. Private Sub btn2Color2_Click(sender As Object, e As EventArgs) Handles btn2Color2.Click
  2. Dim pSourceColor As Color
  3. Dim pDestColor As Color
  4. Dim destImg As New Bitmap(sourceImg.Width, sourceImg.Height)
  5. Dim R, G, B As Integer
  6. Dim HistGram(255) As Integer
  7. For i As Integer = 0 To sourceImg.Width - 1
  8. For j As Integer = 0 To sourceImg.Height - 1
  9. pSourceColor = sourceImg.GetPixel(i, j)
  10. HistGram(pSourceColor.R) += 1
  11. Next
  12. Next
  13. Dim threshold As Integer
  14. Dim allSum, allCount As Integer
  15. For k As Integer = 0 To 255
  16. allCount += HistGram(k)
  17. allSum += k * HistGram(k)
  18. Next
  19. threshold = allSum / allCount
  20. For i As Integer = 0 To sourceImg.Width - 1
  21. For j As Integer = 0 To sourceImg.Height - 1
  22. pSourceColor = sourceImg.GetPixel(i, j)
  23. R = pSourceColor.R
  24. If R >= threshold Then R = 255 Else R = 0
  25. pDestColor = Color.FromArgb(R, R, R)
  26. destImg.SetPixel(i, j, pDestColor)
  27. Next
  28. Next
  29. picDest.Image = destImg
  30. End Sub

运行如下:

 

由于本人数学不是很好,更多的算法以后有空研究后再发出来,大家也可以网上搜索一下相应的算法。

 

由于.net平台下C#和vb.NET很相似,本文也可以为C#爱好者提供参考。

学习更多vb.net知识,请参看 vb.net 教程 目录


 

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/我家小花儿/article/detail/125182
推荐阅读
相关标签
  

闽ICP备14008679号