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;
}
}
}
これまでに働いたことのない – BCLtd