You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: programming/android/api-reference/character-result.md
+1-74Lines changed: 1 addition & 74 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -28,30 +28,13 @@ class CharacterResult
28
28
29
29
| Method | Description |
30
30
| ------ | ----------- |
31
-
| [`CharacterResult`](#characterresult) | The constructor. |
32
31
| [`getCharacterH`](#getcharacterh) | Returns the highest confidence character recognized. |
33
-
| [`setCharacterH`](#setcharacterh) | Sets the highest confidence character recognized. |
34
32
| [`getCharacterM`](#getcharacterm) | Returns the medium confidence character recognized. |
35
-
| [`setCharacterM`](#setcharacterm) | Sets the medium confidence character recognized. |
36
33
| [`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. |
40
35
| [`getCharacterHConfidence`](#getcharacterhconfidence) | Returns the confidence score for the highest confidence character. |
41
-
| [`setCharacterHConfidence`](#setcharacterhconfidence) | Sets the confidence score for the highest confidence character. |
42
36
| [`getCharacterMConfidence`](#getcharactermconfidence) | Returns the confidence score for the medium confidence character. |
43
-
| [`setCharacterMConfidence`](#setcharactermconfidence) | Sets the confidence score for the medium confidence character. |
44
37
| [`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
-
```
55
38
56
39
### getCharacterH
57
40
@@ -61,14 +44,6 @@ Returns the highest confidence character recognized.
61
44
char getCharacterH();
62
45
```
63
46
64
-
### setCharacterH
65
-
66
-
Sets the highest confidence character recognized.
67
-
68
-
```java
69
-
setCharacterH(char characterH);
70
-
```
71
-
72
47
### getCharacterM
73
48
74
49
Returns the medium confidence character recognized.
@@ -77,14 +52,6 @@ Returns the medium confidence character recognized.
77
52
char getCharacterM();
78
53
```
79
54
80
-
### setCharacterM
81
-
82
-
Sets the medium confidence character recognized.
83
-
84
-
```java
85
-
setCharacterM(char characterM);
86
-
```
87
-
88
55
### getCharacterL
89
56
90
57
Returns the lowest confidence character recognized.
@@ -93,14 +60,6 @@ Returns the lowest confidence character recognized.
93
60
char getCharacterL();
94
61
```
95
62
96
-
### setCharacterL
97
-
98
-
Sets the lowest confidence character recognized.
99
-
100
-
```java
101
-
setCharacterL(char characterL);
102
-
```
103
-
104
63
### getLocation
105
64
106
65
Returns the location of the recognized character within the image.
@@ -109,14 +68,6 @@ Returns the location of the recognized character within the image.
109
68
Quadrilateral getLocation();
110
69
```
111
70
112
-
### setLocation
113
-
114
-
Sets the location of the recognized character within the image.
115
-
116
-
```java
117
-
setLocation(Quadrilateral location);
118
-
```
119
-
120
71
### getCharacterHConfidence
121
72
122
73
Returns the confidence score for the highest confidence character.
@@ -125,14 +76,6 @@ Returns the confidence score for the highest confidence character.
125
76
int getCharacterHConfidence();
126
77
```
127
78
128
-
### setCharacterHConfidence
129
-
130
-
Sets the confidence score for the highest confidence character.
0 commit comments