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: ocr/developer-reference/recognize-image/fetch-recognition-result/_index.md
+11-1Lines changed: 11 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
weight: 20
3
-
date: "2023-11-27"
3
+
date: "2023-12-20"
4
4
author: "Vladimir Lapin"
5
5
type: docs
6
6
url: /fetch-image-recognition-result/
@@ -62,6 +62,16 @@ Property | Type | Description
62
62
`results` | array | [Recognition results](/ocr/result-format/) (depend on the `resultType` property of the recognition task).<br />All results (including plain text) are returned as Base64 encoded strings. You must decode them to display on the screen or save to a file.
63
63
`error/messages` | string[] | Recognition error messages, if any.<br />Even if the image is recognized, you can still get notifications and warnings about non-fatal recognition errors.
64
64
65
+
## Evaluation mode
66
+
67
+
To fetch the recognition result from [evaluation](/ocr/send-image-for-recognition/#evaluation-mode) request, send a GET request to the endpoint `https://api.aspose.cloud/v5.0/ocr/RecognizeImageTrial?id={request ID}`.
68
+
69
+
This endpoint does not use the **Authorization** header, so there is no need to generate an access token.
70
+
71
+
{{% alert color="caution" %}}
72
+
**10%** of the words in recognition results will be substituted with asterisks (`*`). The sequence of masked words remains unchanged upon [re-submitting](/ocr/send-image-for-recognition/#evaluation-mode) the identical image for recognition.
73
+
{{% /alert %}}
74
+
65
75
## Task statuses
66
76
67
77
Recognition may take up to several seconds depending on the Aspose.OCR cloud load and image size. The status of the recognition task is indicated in the `taskStatus` property of the recognition result.
Copy file name to clipboardExpand all lines: ocr/developer-reference/recognize-image/send-for-recognition/_index.md
+7-1Lines changed: 7 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
weight: 10
3
-
date: "2023-11-27"
3
+
date: "2023-12-20"
4
4
author: "Vladimir Lapin"
5
5
type: docs
6
6
url: /send-image-for-recognition/
@@ -39,6 +39,12 @@ The image and recognition parameters are provided in JSON format in the request
39
39
}
40
40
```
41
41
42
+
## Evaluation mode
43
+
44
+
To use Aspose.OCR Cloud image recognition in [evaluation mode](/ocr/subscription/#evaluation-tier), send a POST request to the endpoint `https://api.aspose.cloud/v5.0/ocr/RecognizeImageTrial`.
45
+
46
+
This endpoint does not use the **Authorization** header, so there is no need to generate an access token. All settings remain the same as in regular image recognition requests.
47
+
42
48
## Providing an image
43
49
44
50
The image is provided in a value of `image` property as a Base64 encoded string.
Copy file name to clipboardExpand all lines: ocr/getting-started/subscription/_index.md
+2-1Lines changed: 2 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
---
2
2
weight: 30
3
-
date: "2023-11-27"
3
+
date: "2023-12-20"
4
4
author: "Vladimir Lapin"
5
5
type: docs
6
6
url: /subscription/
@@ -29,6 +29,7 @@ You can try Aspose.OCR Cloud without subscribing for a paid plan and even withou
29
29
30
30
Method | Limitations
31
31
------ | -----------
32
+
[Image recognition](/ocr/recognize-image/) | **10%** of the words in recognition results are substituted with asterisks (`*`). The sequence of masked words remains unchanged upon re-submitting the identical image for recognition.
32
33
[Text to speech conversion](/ocr/text-to-speech/) | <ul><li>**10** API calls per day from a single IP address.</li><li>The text size must not exceed **500** characters, including spaces and punctuation.</li><li>The phrase _"Please authenticate to the API to remove this message"_ is inserted at a random position within the generated audio.</li></ul>
33
34
34
35
If you have already hit the limits or need access to other methods, consider the [free tier](#free-tier) or [paid subscription plan](#paid-plans).
0 commit comments