Skip to content

Commit d363d34

Browse files
update to internal commit f1646747
1 parent f9fd0c2 commit d363d34

33 files changed

+102
-31
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `BufferedCharacterItemSet` class represents the buffered characters and the
1717

1818
*Namespace:* com.dynamsoft.dlr
1919

20-
*Assembly:* DynamsoftLabelRecognizer.aar
20+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2121

2222
```java
2323
class BufferedCharacterItemSet

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `BufferedCharacterItem` class represents a buffered character.
1717

1818
*Namespace:* com.dynamsoft.dlr
1919

20-
*Assembly:* DynamsoftLabelRecognizer.aar
20+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2121

2222
```java
2323
class BufferedCharacterItem

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `CharacterCluster` class represents the character clustering result. Each `C
1717

1818
*Namespace:* com.dynamsoft.dlr
1919

20-
*Assembly:* DynamsoftLabelRecognizer.aar
20+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2121

2222
```java
2323
class CharacterCluster

programming/android/api-reference/character-result-v2.6.1003.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `CharacterResult` class represents the result of a character recognition pro
1818

1919
*Namespace:* com.dynamsoft.dlr
2020

21-
*Assembly:* DynamsoftLabelRecognizer.aar
21+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2222

2323
```java
2424
class CharacterResult

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `CharacterResult` class represents the result of a character recognition pro
1818

1919
*Namespace:* com.dynamsoft.dlr
2020

21-
*Assembly:* DynamsoftLabelRecognizer.aar
21+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2222

2323
```java
2424
class CharacterResult
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
---
2+
layout: default-layout
3+
title: RawTextLineStatus - Dynamsoft LabelRecognizer 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+
needGenerateH3Content: true
7+
needAutoGenerateSidebar: true
8+
noTitleIndex: true
9+
breadcrumbText: RawTextLineStatus
10+
codeAutoHeight: true
11+
---
12+
13+
# Enumeration RawTextLineStatus
14+
15+
`RawTextLineStatus` enumerates the final status of a raw text line.
16+
17+
```java
18+
@IntDef({})
19+
@Retention(RetentionPolicy.CLASS)
20+
public @interface EnumRawTextLineStatus {
21+
/** Localized but recognition not performed. */
22+
public static final int RTLS_LOCALIZED = 0;
23+
/** Recognition failed. */
24+
public static final int RTLS_RECOGNITION_FAILED = 1;
25+
/** Successfully recognized. */
26+
public static final int RTLS_RECOGNITION_SUCCEEDED = 2;
27+
} EnumRawTextLineStatus;
28+
```

programming/android/api-reference/label-recognizer-module.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ The `LabelRecognizerModule` class defines general functions of the `DynamsoftLab
1717

1818
*Namespace:* com.dynamsoft.dlr
1919

20-
*Assembly:* DynamsoftLabelRecognizer.aar
20+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2121

2222
```java
2323
class LabelRecognizerModule

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `LocalizedTextLineElement` class represents a localized text line element. I
1818

1919
*Namespace:* com.dynamsoft.dlr.intermediate_results
2020

21-
*Assembly:* DynamsoftLabelRecognizer.aar
21+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2222

2323
```java
2424
class LocalizedTextLineElement extends RegionObjectElement

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ The `LocalizedTextLinesUnit` class represents a unit that contains localized tex
1818

1919
*Namespace:* com.dynamsoft.dlr.intermediate_results
2020

21-
*Assembly:* DynamsoftLabelRecognizer.aar
21+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2222

2323
```java
2424
class LocalizedTextLinesUnit extends IntermediateResultUnit

programming/android/api-reference/raw-text-line.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ The `RawTextLine` class represents a text line in an image. It can be in one of
2121

2222
*Namespace:* com.dynamsoft.dlr
2323

24-
*Assembly:* DynamsoftLabelRecognizer.aar
24+
*Assembly:* DynamsoftCaptureVisionBundle.aar
2525

2626
```java
2727
class RawTextLine

0 commit comments

Comments
 (0)