Skip to content

Commit

Permalink
Update file(s) "/." from "aspose-ocr/Aspose.OCR-API-References"
Browse files Browse the repository at this point in the history
  • Loading branch information
Annushka34 committed Dec 6, 2024
1 parent 2f8b669 commit 79fa27b
Show file tree
Hide file tree
Showing 18 changed files with 78 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ Contains tools for image recognition, skew correction, text areas detection and
|[Logging](/ocr/python-net/aspose.ocr/logging/)|Class to create log configurations.|
|[Metered](/ocr/python-net/aspose.ocr/metered/)|Provides methods to set metered key.|
|[OcrInput](/ocr/python-net/aspose.ocr/ocrinput/)|Container to collect all images / documents for preprocessing / recognition.|
|[OcrOutput](/ocr/python-net/aspose.ocr/ocroutput/)||
|[PassportRecognitionSettings](/ocr/python-net/aspose.ocr/passportrecognitionsettings/)|Settings for the passport recognition.<br/> Contains elements that allow customizing the recognition process.|
|[ReceiptRecognitionSettings](/ocr/python-net/aspose.ocr/receiptrecognitionsettings/)|Settings for the receipt recognition.<br/> Contains elements that allow customizing the recognition process.|
|[RecognitionResult](/ocr/python-net/aspose.ocr/recognitionresult/)|The results of the image recognition.<br/> Contains elements with recognition information and methods for result export.|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@ The AsposeOcr type exposes the following members:
| :- | :- |
|recognize(images)|Recognizes text on images / documents.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, directory, arrays, archives.|
|recognize(images, settings)|Recognizes text on images / documents.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, directory, arrays, archives.|
|recognize_receipt(input)|Recognizes text on receipts.|
|recognize_receipt(input, settings)|Recognizes text on receipts.|
|recognize_invoice(input)|Recognizes text on invoices.|
|recognize_invoice(input, settings)|Recognizes text on invoices.|
|recognize_id_card(input)|Recognizes text on ID card.|
|recognize_id_card(input, settings)|Recognizes text on ID card.|
|recognize_car_plate(input)|Recognizes text on car plate.|
|recognize_car_plate(input, settings)|Recognizes text on car plate.|
|recognize_passport(input)|Recognizes text on passport.|
|recognize_passport(input, settings)|Recognizes text on passport.|
|recognize_receipt(images)|Recognizes text on receipts.|
|recognize_receipt(images, settings)|Recognizes text on receipts.|
|recognize_invoice(images)|Recognizes text on invoices.|
|recognize_invoice(images, settings)|Recognizes text on invoices.|
|recognize_id_card(images)|Recognizes text on ID card.|
|recognize_id_card(images, settings)|Recognizes text on ID card.|
|recognize_car_plate(images)|Recognizes text on car plate.|
|recognize_car_plate(images, settings)|Recognizes text on car plate.|
|recognize_passport(images)|Recognizes text on passport.|
|recognize_passport(images, settings)|Recognizes text on passport.|
|recognize_lines(images)|Recognizes images that contain single line of text.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, folder, arrays, archives.|
|recognize_lines(images, settings)|Recognizes images that contain single line of text.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, folder, arrays, archives.|
|detect_rectangles(images)|Detects text areas on images.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, folder, arrays, archives.|
Expand All @@ -49,7 +49,7 @@ The AsposeOcr type exposes the following members:
|save_multipage_document(stream, save_format, results, apply_spelling_correction, language, dictionary_path, embedded_font_path, optimize_pdf)| |
|recognize_fast(images)|Recognizes text on images / documents.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, directory, arrays, archives.|
|recognize_street_photo(input)|Recognizes text on street photos.|
|recognize_handwritten_text(input)|Recognizes handwritten text on images.|
|recognize_handwritten_text(images)|Recognizes handwritten text on images.|
|calculate_skew(images)|Calculates the skew angles of an images.<br/> Supports GIF, PNG, JPEG, BMP, TIFF, JFIF, stream, folder, arrays, archives.|
|detect_defects(images, defect_type)|Automatically find problematic areas of an image that can significantly impact the accuracy of OCR.<br/> Supports PNG, JPEG, BMP, TIFF, JFIF, and GIF images provided as a file, stream, or pixel array. Supports bulk recognition.|
|image_has_text(full_path, text, settings, ignore_case, auto_skew)|Check if the image contains the provided text fragment.|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Language
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 360
weight: 370
url: /python-net/aspose.ocr/language/
---

Expand Down Expand Up @@ -40,7 +40,7 @@ Languages used for OCR.<br/> ISO 939-3 Code.
|SLK|Slovak alphabet|
|SLV|Slovene alphabet|
|SWE|Swedish alphabet|
|CHI|Chinese alphabet|
|CHINESE||
|BEL|Belorussian alphabet|
|BUL|Bulgarian alphabet|
|KAZ|Kazakh alphabet|
Expand Down Expand Up @@ -159,8 +159,16 @@ Languages used for OCR.<br/> ISO 939-3 Code.
|PES|Persian (Farsi) alphabet|
|URD|Urdu alphabet|
|UIG|Uyghur alphabet|
|KOR|Korean alphabet|
|JPN|Japanese alphabet|
|KOR||
|JPN||
|TAM||
|TEL||
|KAN||
|EUROPEAN||
|INDIC||
|DEVANAGARI||
|CHI|Chinese alphabet|
|MON||

### See Also

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: License
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 110
weight: 120
url: /python-net/aspose.ocr/license/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Logging
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 120
weight: 130
url: /python-net/aspose.ocr/logging/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: LoggingLevel
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 320
weight: 380
url: /python-net/aspose.ocr/logginglevel/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Metered
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 130
weight: 140
url: /python-net/aspose.ocr/metered/
---

Expand All @@ -20,8 +20,8 @@ The Metered type exposes the following members:
| Name | Description |
| :- | :- |
|set_metered_key(public_key, private_key)|Sets metered public and private key.<br/> If you purchase metered license, when start application, this API should be called, normally, this is enough. <br/> However, if always fail to upload consumption data and exceed 24 hours, the license will be set to evaluation status, <br/> to avoid such case, you should regularly check the license status, if it is evaluation status, call this API again.|
|get_consumption_quantity()|Gets consumption file size|
|get_consumption_credit()|Gets consumption credit|
|get_consumption_quantity()|Gets consumption file size.|
|get_consumption_credit()|Gets consumption credit.|

### See Also

Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
---
title: OcrOutput
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 160
url: /python-net/aspose.ocr/ocroutput/
---

## OcrOutput class



The OcrOutput type exposes the following members:
## Constructors
| Name | Description |
| :- | :- |
|OcrOutput()|Initializes a new instance of the OcrOutput class|
|OcrOutput(collection, input)|Initializes a new instance of the OcrOutput class|
|OcrOutput(capacity)|Initializes a new instance of the OcrOutput class|
## Methods
| Name | Description |
| :- | :- |
|save_pdf(full_file_name, embedded_font_path, optimize_pdf)| |
|save_pdf(full_file_name)| |
|save_pdf(stream)| |
|save_pdf(stream, embedded_font_path, optimize_pdf)| |
|save(full_file_name, save_format, embedded_font_path, optimize_pdf)| |
|save(full_file_name, save_format)| |
|save(stream, save_format)| |
|save(stream, save_format, embedded_font_path, optimize_pdf)| |
|add_range(collection)| |

### See Also

* namespace [aspose.ocr](/ocr/python-net/aspose.ocr/)
* assembly [Aspose.ocr](/ocr/python-net/)

Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PassportRecognitionSettings
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 160
weight: 170
url: /python-net/aspose.ocr/passportrecognitionsettings/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PdfOptimizationMode
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 380
weight: 390
url: /python-net/aspose.ocr/pdfoptimizationmode/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: PixelType
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 330
weight: 400
url: /python-net/aspose.ocr/pixeltype/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: ReceiptRecognitionSettings
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 170
weight: 180
url: /python-net/aspose.ocr/receiptrecognitionsettings/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: RecognitionResult
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 180
weight: 190
url: /python-net/aspose.ocr/recognitionresult/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: RecognitionSettings
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 210
weight: 220
url: /python-net/aspose.ocr/recognitionsettings/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: Rectangle
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 220
weight: 230
url: /python-net/aspose.ocr/rectangle/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: RectangleOutput
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 210
weight: 240
url: /python-net/aspose.ocr/rectangleoutput/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: SaveFormat
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 400
weight: 410
url: /python-net/aspose.ocr/saveformat/
---

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: SkewOutput
second_title: Aspose.OCR for Python via .NET API Reference
description:
type: docs
weight: 220
weight: 260
url: /python-net/aspose.ocr/skewoutput/
---

Expand Down

0 comments on commit 79fa27b

Please sign in to comment.