2

このウェブサイトを使用するのはこれが初めてですが、問題があります。ocr を vb.net で動作させる方法について、この素晴らしい youtube ビデオを見ました。ここにURL:

http://www.youtube.com/watch?v=Kjdu8SjEtG0

そこで、emgu ライブラリをダウンロードすることにしました。ここに URL があります。

http://sourceforge.net/projects/emgucv/

ビデオに表示されているすべてのことを行ったところ、次のエラーが表示されました。

私も例外をコピーします(それが助けになる場合):

System.InvalidOperationException was unhandled
  Message=An error occurred creating the form. See Exception.InnerException for details.  The error is: The type initializer for 'Emgu.CV.OCR.Tesseract' threw an exception.
  Source=WindowsApplication1
  StackTrace:
       at WindowsApplication1.My.MyProject.MyForms.Create__Instance__[T](T Instance) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 190
       at WindowsApplication1.My.MyProject.MyForms.get_Form1()
       at WindowsApplication1.My.MyApplication.OnCreateMainForm() in C:\Users\UltimateSoul\AppData\Local\Temporary Projects\WindowsApplication1\My Project\Application.Designer.vb:line 35
       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.OnRun()
       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.DoApplicationModel()
       at Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase.Run(String[] commandLine)
       at WindowsApplication1.My.MyApplication.Main(String[] Args) in 17d14f5c-a337-4978-8281-53493378c1071.vb:line 81
       at System.AppDomain._nExecuteAssembly(RuntimeAssembly assembly, String[] args)
       at System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
       at Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
       at System.Threading.ThreadHelper.ThreadStart_Context(Object state)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state, Boolean ignoreSyncCtx)
       at System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
       at System.Threading.ThreadHelper.ThreadStart()
  InnerException: System.TypeInitializationException
       Message=The type initializer for 'Emgu.CV.OCR.Tesseract' threw an exception.
       Source=Emgu.CV.OCR
       TypeName=Emgu.CV.OCR.Tesseract
       StackTrace:
            at Emgu.CV.OCR.Tesseract..ctor(String dataPath, String language, OcrEngineMode mode)
            at WindowsApplication1.Form1..ctor() in C:\Users\UltimateSoul\AppData\Local\Temporary Projects\WindowsApplication1\Form1.vb:line 8
       InnerException: System.TypeInitializationException
            Message=The type initializer for 'Emgu.CV.CvInvoke' threw an exception.
            Source=Emgu.CV
            TypeName=Emgu.CV.CvInvoke
            StackTrace:
                 at Emgu.CV.CvInvoke.CV_MAKETYPE(Int32 depth, Int32 cn)
                 at Emgu.CV.OCR.Tesseract..cctor()
            InnerException: System.DllNotFoundException
                 Message=Unable to load DLL 'opencv_core242': The specified module could not be found. (Exception from HRESULT: 0x8007007E)
                 Source=Emgu.CV
                 TypeName=""
                 StackTrace:
                      at Emgu.CV.CvInvoke.cvRedirectError(CvErrorCallback errorHandler, IntPtr userdata, IntPtr prevUserdata)
                      at Emgu.CV.CvInvoke..cctor()
                 InnerException: 

私は何日もこれに取り組んでいましたが、どこにも行きませんでした。助けてくださいありがとう!

ここでコードを申し訳ありません

Imports Emgu.CV
Imports Emgu.Util
Imports Emgu.CV.OCR
Imports Emgu.CV.Structure

Public Class Form1

    Dim OCRz As Tesseract = New Tesseract("tessdata", "eng", Tesseract.OcrEngineMode.OEM_TESSERACT_ONLY)
    Dim pic As Bitmap = New Bitmap(270, 100)
    Dim gfx As Graphics = Graphics.FromImage(pic)

    Private Sub Timer1_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Timer1.Tick

        gfx.CopyFromScreen(New Point(Me.Location.X + PictureBox1.Location.X + 4, Me.Location.Y + PictureBox1.Location.Y + 30), New Point(0, 0), pic.Size)
        PictureBox1.Image = pic

    End Sub

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click

        OCRz.Recognize(New Image(Of Bgr, Byte)(pic))
        RichTextBox1.Text = OCRz.GetText

    End Sub
End Class
4

3 に答える 3

1

64ビットOSを使用している場合は、次のファイルも参照するように追加する必要があります(EMGUCVバージョン>= 2.4の場合)

cudart64_42_9.dll, cvextern.dll, npp64_42_9.dll

これは、内部例外なしで64ビットOSでemguCv2.4.xを使用するのに役立ちます。

于 2013-01-12T19:56:58.530 に答える
1

出力ディレクトリにコピーcvextern.dllしてファイルします。opencv_**.dllbin/Debug/

「AnyCPU」を実行するように構成マネージャーを設定します。構成は「デバッグ」する必要があります。

于 2012-12-18T02:18:52.263 に答える
0

ビデオでは、x64 dir がコピーされています。代わりに、x86 ディレクトリをプロジェクト ディレクトリにコピーし、プロパティですべての dll ファイルを選択して、[新しい場合はコピー] を有効にします。

于 2013-02-24T06:55:48.637 に答える