Skip to content

Commit da97182

Browse files
updating v2
1 parent 5957af4 commit da97182

26 files changed

+240
-2303
lines changed

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

Lines changed: 0 additions & 93 deletions
This file was deleted.

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

Lines changed: 1 addition & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -28,30 +28,13 @@ class CharacterResult
2828

2929
| Method | Description |
3030
| ------ | ----------- |
31-
| [`CharacterResult`](#characterresult) | The constructor. |
3231
| [`getCharacterH`](#getcharacterh) | Returns the highest confidence character recognized. |
33-
| [`setCharacterH`](#setcharacterh) | Sets the highest confidence character recognized. |
3432
| [`getCharacterM`](#getcharacterm) | Returns the medium confidence character recognized. |
35-
| [`setCharacterM`](#setcharacterm) | Sets the medium confidence character recognized. |
3633
| [`getCharacterL`](#getcharacterl) | Returns the lowest confidence character recognized. |
37-
| [`setCharacterL`](#setcharacterl) | Sets the lowest confidence character recognized. |
38-
| [`getLocation`](#getlocation) | Returns the location of the recognized character within the image. |
39-
| [`setLocation`](#setlocation) | Sets the location of the recognized character within the image. |
34+
| [`getLocation`](#getlocation) | Returns the location of the recognized character within the image. |
4035
| [`getCharacterHConfidence`](#getcharacterhconfidence) | Returns the confidence score for the highest confidence character. |
41-
| [`setCharacterHConfidence`](#setcharacterhconfidence) | Sets the confidence score for the highest confidence character. |
4236
| [`getCharacterMConfidence`](#getcharactermconfidence) | Returns the confidence score for the medium confidence character. |
43-
| [`setCharacterMConfidence`](#setcharactermconfidence) | Sets the confidence score for the medium confidence character. |
4437
| [`getCharacterLConfidence`](#getcharacterlconfidence) | Returns the confidence score for the lowest confidence character. |
45-
| [`setCharacterLConfidence`](#setcharacterlconfidence) | Sets the confidence score for the lowest confidence character. |
46-
47-
### CharacterResult
48-
49-
The constructor.
50-
51-
52-
```java
53-
CharacterResult(char characterH, char characterM, char characterL, int characterHConfidence, int characterMConfidence, int characterLConfidence, Quadrilateral location);
54-
```
5538

5639
### getCharacterH
5740

@@ -61,14 +44,6 @@ Returns the highest confidence character recognized.
6144
char getCharacterH();
6245
```
6346

64-
### setCharacterH
65-
66-
Sets the highest confidence character recognized.
67-
68-
```java
69-
setCharacterH(char characterH);
70-
```
71-
7247
### getCharacterM
7348

7449
Returns the medium confidence character recognized.
@@ -77,14 +52,6 @@ Returns the medium confidence character recognized.
7752
char getCharacterM();
7853
```
7954

80-
### setCharacterM
81-
82-
Sets the medium confidence character recognized.
83-
84-
```java
85-
setCharacterM(char characterM);
86-
```
87-
8855
### getCharacterL
8956

9057
Returns the lowest confidence character recognized.
@@ -93,14 +60,6 @@ Returns the lowest confidence character recognized.
9360
char getCharacterL();
9461
```
9562

96-
### setCharacterL
97-
98-
Sets the lowest confidence character recognized.
99-
100-
```java
101-
setCharacterL(char characterL);
102-
```
103-
10463
### getLocation
10564

10665
Returns the location of the recognized character within the image.
@@ -109,14 +68,6 @@ Returns the location of the recognized character within the image.
10968
Quadrilateral getLocation();
11069
```
11170

112-
### setLocation
113-
114-
Sets the location of the recognized character within the image.
115-
116-
```java
117-
setLocation(Quadrilateral location);
118-
```
119-
12071
### getCharacterHConfidence
12172

12273
Returns the confidence score for the highest confidence character.
@@ -125,14 +76,6 @@ Returns the confidence score for the highest confidence character.
12576
int getCharacterHConfidence();
12677
```
12778

128-
### setCharacterHConfidence
129-
130-
Sets the confidence score for the highest confidence character.
131-
132-
```java
133-
setCharacterHConfidence(int characterHConfidence);
134-
```
135-
13679
### getCharacterMConfidence
13780

13881
Returns the confidence score for the medium confidence character.
@@ -141,26 +84,10 @@ Returns the confidence score for the medium confidence character.
14184
int characterMConfidence();
14285
```
14386

144-
### setCharacterMConfidence
145-
146-
Sets the confidence score for the medium confidence character.
147-
148-
```java
149-
setCharacterMConfidence(int characterMConfidence);
150-
```
151-
15287
### getCharacterLConfidence
15388

15489
Returns the confidence score for the lowest confidence character.
15590

15691
```java
15792
int characterLConfidence();
15893
```
159-
160-
### setCharacterLConfidence
161-
162-
Sets the confidence score for the lowest confidence character.
163-
164-
```java
165-
setCharacterLConfidence(int characterLConfidence);
166-
```

0 commit comments

Comments
 (0)