Financial OCR in C# and .NET

This article was translated from English: Does it need improvement?
Translated
View the article in English

126 Weitere Sprachen

IronOCR ist eine C#-Softwarekomponente, die es .NET-Programmierern ermöglicht, Text aus Bildern und PDF-Dokumenten in 126 Sprachen, einschließlich Finanz, zu lesen.

Es ist eine erweiterte Abspaltung von Tesseract, die exklusiv für .NET-Entwickler entwickelt wurde und regelmäßig andere Tesseract-Engines sowohl in Bezug auf Geschwindigkeit als auch Genauigkeit übertrifft.

Inhalt von IronOcr.Languages.Financial

Dieses Paket enthält 16 OCR-Sprachen für .NET:

  • Finanz

Download

Finanzsprache-Paket [Financial]

Installation

Das Erste, was wir tun müssen, ist, unser Finanz OCR-Paket in Ihr .NET-Projekt zu installieren.

Install-Package IronOCR.Languages.Financial

Beispielcode

Dieses C#-Codebeispiel liest finanziellen Text aus einem Bild oder PDF-Dokument.

// Import the IronOcr namespace
using IronOcr;

// Instantiate the IronTesseract OCR engine
var Ocr = new IronTesseract();

// Set the OCR language to Financial
Ocr.Language = OcrLanguage.Financial;

// Create an OCR input object, specifying the path to the image or PDF
using (var Input = new OcrInput(@"images\Financial.png"))
{
    // Perform OCR to read text from the input
    var Result = Ocr.Read(Input);

    // Retrieve the extracted text
    var AllText = Result.Text;
}
// Import the IronOcr namespace
using IronOcr;

// Instantiate the IronTesseract OCR engine
var Ocr = new IronTesseract();

// Set the OCR language to Financial
Ocr.Language = OcrLanguage.Financial;

// Create an OCR input object, specifying the path to the image or PDF
using (var Input = new OcrInput(@"images\Financial.png"))
{
    // Perform OCR to read text from the input
    var Result = Ocr.Read(Input);

    // Retrieve the extracted text
    var AllText = Result.Text;
}
' Import the IronOcr namespace
Imports IronOcr

' Instantiate the IronTesseract OCR engine
Private Ocr = New IronTesseract()

' Set the OCR language to Financial
Ocr.Language = OcrLanguage.Financial

' Create an OCR input object, specifying the path to the image or PDF
Using Input = New OcrInput("images\Financial.png")
	' Perform OCR to read text from the input
	Dim Result = Ocr.Read(Input)

	' Retrieve the extracted text
	Dim AllText = Result.Text
End Using
$vbLabelText   $csharpLabel

Erklärung:

  • Verwendung von IronOcr: Dieser Namensraum enthält alle notwendigen Klassen für den OCR-Prozess.
  • IronTesseract Klasse: Dies ist die Hauptklasse, die OCR-Aufgaben ermöglicht.
  • Spracheinstellung: Die Einstellung der Sprache auf Financial ermöglicht es der OCR-Engine, finanzielle Terminologie zu erkennen.
  • OcrInput Klasse: Sie nimmt einen Dateipfad, der das zu verarbeitende Bild oder die PDF-Datei angibt.
  • Lese-Methode: Ausgeführt mit Ocr.Read(Input), verarbeitet es das Bild, um den Text basierend auf den bereitgestellten Eingabe- und Spracheinstellungen abzurufen.
  • Result.Text: Es speichert den erkannten Text aus dem Bild oder PDF.