使用tesseract識別簡單的圖形碼

Posted feiyucha

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用tesseract識別簡單的圖形碼相关的知识,希望对你有一定的参考价值。

圖示:

  技术图片

 運行效果:

  技术图片

 

 實現代碼:

  

Add-Type -AssemblyName System.Drawing
function Identify ($path)
{
    $img=[System.Drawing.Bitmap]::FromFile($path)

    for ($i = 0; $i -lt $img.Width; $i++)
    { 
        for ($j = 0; $j -lt $img.Height; $j++)
        { 
            $_p =$img.GetPixel($i,$j)
            $_pt=($_p.R+$_p.G+$_p.B)/3  #灰度值
            if ($_pt -lt 140) #小於閥值 黑色
            {
                $img.SetPixel($i,$j,[System.Drawing.Color]::FromArgb($_p.A,0,0,0))  
             }
             else
             {#大於閥值設為 白色
              $img.SetPixel($i,$j,[System.Drawing.Color]::FromArgb($_p.A,255,255,255))  
             }
        }
    }
    $newPath=$path.Substring(0,$path.LastIndexOf(‘.‘))+‘copy1.jpg‘
    $img.Save($newPath)
    tesseract $newPath stdout
    Remove-Item $newPath -Force  #刪除處理後的副本
}

補充:

  下載地址:https://digi.bib.uni-mannheim.de/tesseract/
  argb:ARGB 是一种色彩模式,也就是RGB色彩模式附加上Alpha(透明度)通道,常见于32位位图的存储结构。


以上是关于使用tesseract識別簡單的圖形碼的主要内容,如果未能解决你的问题,请参考以下文章

簡單的頁面跳轉

[RL學習篇][#2] 簡單的grid_mdp測試程式

用JavaScript做一個簡單的計算器

FMDB與SQLite 數據庫應用示範:打做一隻簡單的電影資料庫 App

AngularJS 簡易物件修改入門

QEvent postEvent/sendEvent