Tesseract
Overview
Code samples
Scan text from an image
// Scan an image from a picturebox
ScanResult result = await tesseract1.ScanImageAsync(pictureBox1.Image);
AlertBox.Show(result.Text);
AlertBox.Show(result.Confidence);
AlertBox.Show(result.Words[0]);Scan text from a camera feed
// Scan an image from the camera feed
private void tesseract1_TextRecognized(object sender, Wisej.Ext.Tesseract.TextRecognizedEventArgs e)
{
AlertBox.Show(e.Text);
}How to Use
Last updated
Was this helpful?
