Skip to content

Commit a74524f

Browse files
Merge pull request #42 from dynamsoft-docs/preview
update to internal commit 256b0189
2 parents ff92e05 + 9647b90 commit a74524f

16 files changed

+285
-146
lines changed

programming/python/api-reference/buffered-character-item-set.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ layout: default-layout
33
title: BufferedCharacterItemSet Class - Dynamsoft Label Recognizer Module Python Edition API Reference
44
description: Definition of the BufferedCharacterItemSet class in Dynamsoft Label Recognizer Module Python Edition.
55
keywords: BufferedCharacterItemSet
6-
needGenerateH3Content: true
7-
needAutoGenerateSidebar: true
8-
noTitleIndex: true
96
---
107

118
# BufferedCharacterItemSet

programming/python/api-reference/buffered-character-item.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ layout: default-layout
33
title: BufferedCharacterItem Class - Dynamsoft Label Recognizer Module Python Edition API Reference
44
description: Definition of the BufferedCharacterItem class in Dynamsoft Label Recognizer Module Python Edition.
55
keywords: BufferedCharacterItem
6-
needGenerateH3Content: true
7-
needAutoGenerateSidebar: true
8-
noTitleIndex: true
96
---
107

118
# BufferedCharacterItem

programming/python/api-reference/character-cluster.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ layout: default-layout
33
title: CharacterCluster Class - Dynamsoft Label Recognizer Module Python Edition API Reference
44
description: Definition of the CharacterCluster class in Dynamsoft Label Recognizer Module Python Edition.
55
keywords: Character result
6-
needGenerateH3Content: true
7-
needAutoGenerateSidebar: true
8-
noTitleIndex: true
96
---
107

118
# CharacterCluster

programming/python/api-reference/character-result.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ layout: default-layout
33
title: CharacterResult Class - Dynamsoft Label Recognizer Module Python Edition API Reference
44
description: Definition of the CharacterResult class in Dynamsoft Label Recognizer Module Python Edition.
55
keywords: Character result
6-
needGenerateH3Content: true
7-
needAutoGenerateSidebar: true
8-
noTitleIndex: true
96
---
107

118
# CharacterResult
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
---
2+
layout: default-layout
3+
title: RawTextLineStatus - Dynamsoft LabelRecognizer Python Enumerations
4+
description: The enumeration RawTextLineStatus of Dynamsoft LabelRecognizer describes the final status of a raw text line.
5+
keywords: Raw Text Line Status
6+
codeAutoHeight: true
7+
---
8+
9+
# Enumeration RawTextLineStatus
10+
11+
`RawTextLineStatus` enumerates the final status of a raw text line.
12+
13+
```python
14+
class EnumRawTextLineStatus(IntEnum):
15+
# Localized but recognition not performed.
16+
RTLS_LOCALIZED,
17+
# Recognition failed.
18+
RTLS_RECOGNITION_FAILED,
19+
# Successfully recognized.
20+
RTLS_RECOGNITION_SUCCEEDED
21+
```

programming/python/api-reference/index.md

-101
This file was deleted.

programming/python/api-reference/localized-text-line-element.md

+4-7
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ layout: default-layout
33
title: LocalizedTextLineElement - Dynamsoft Label Recognizer Classes
44
description: The class LocalizedTextLineElement of Dynamsoft Label Recognizer represents a localized text line element.
55
keywords: Localized text line element
6-
needGenerateH3Content: true
7-
needAutoGenerateSidebar: true
8-
noTitleIndex: true
96
---
107

118
# LocalizedTextLineElement
@@ -16,7 +13,7 @@ The `LocalizedTextLineElement` class represents a localized text line element. I
1613

1714
*Module:* dynamsoft_label_recognizer
1815

19-
```cpp
16+
```python
2017
class LocalizedTextLineElement(RegionObjectElement)
2118
```
2219

@@ -43,7 +40,7 @@ def __init__(self, *args, **kwargs):
4340

4441
Gets the number of character quads in the text line.
4542

46-
```cpp
43+
```python
4744
def get_character_quads_count(self) -> int:
4845
```
4946

@@ -55,7 +52,7 @@ Returns the number of character quads in the text line.
5552

5653
Gets the quadrilateral of a specific character in the text line.
5754

58-
```cpp
55+
```python
5956
def get_character_quad(self, index: int) -> Tuple[int, Quadrilateral]:
6057
```
6158

@@ -73,7 +70,7 @@ Returns a tuple containing following elements:
7370

7471
Gets the row number of the text line.
7572

76-
```cpp
73+
```python
7774
def get_row_number(self) -> int:
7875
```
7976

programming/python/api-reference/localized-text-lines-unit.md

-3
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ layout: default-layout
33
title: LocalizedTextLinesUnit - Dynamsoft Label Recognizer Classes
44
description: The class LocalizedTextLinesUnit of Dynamsoft Label Recognizer represents a unit that contains localized text lines.
55
keywords: Localized text lines unit
6-
needGenerateH3Content: true
7-
needAutoGenerateSidebar: true
8-
noTitleIndex: true
96
---
107

118
# LocalizedTextLinesUnit

0 commit comments

Comments
 (0)