2017-11-27 14 views
0

私はAspose OCRで遊んでいて、白い背景と黒いテキストの画像を読んでいます。しかし、黒または異なる色の背景を持つものは読み取れません。Aspose OCR - Not Recognizing Image

これを回避する方法はありますか。

private void timer1_Tick(object sender, EventArgs e) 
     { 
      //SendKeys.Send("{PRTSC}"); 
      Image img = Clipboard.GetImage(); 
      pictureBox1.SizeMode = PictureBoxSizeMode.StretchImage; 
      pictureBox1.Image = img; 




      if (img != null) 
      { 
       var ms = new MemoryStream(); 

       img.Save(ms, ImageFormat.Jpeg); // put here the image format 
       ms.Position = 0; 

       ocr.Image = ImageStream.FromStream(ms, ImageStreamFormat.Jpg); 

       if (ocr.Process()) // Start processing it 
       { 
        label1.Text = "Text: " + ocr.Text; 
       } 
      } 
     } 

答えて

0

次のコード行を試してみてください。さらに、カラーバックグラウンドの画像処理の開発が進行中であることをあなたにお知らせします。

ocr.Config.ProcessColoredBackground = true; 

私はAspose as Developerエバンジェリストを使用しています。

+0

これまでに働いたことのない – BCLtd