Skip to content

Commit 92cf64b

Browse files
committed
Image recognition trial mode
1 parent d60d638 commit 92cf64b

File tree

3 files changed

+20
-3
lines changed
  • ocr

3 files changed

+20
-3
lines changed

ocr/developer-reference/recognize-image/fetch-recognition-result/_index.md

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
weight: 20
3-
date: "2023-11-27"
3+
date: "2023-12-20"
44
author: "Vladimir Lapin"
55
type: docs
66
url: /fetch-image-recognition-result/
@@ -62,6 +62,16 @@ Property | Type | Description
6262
`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.
6363
`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.
6464

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+
6575
## Task statuses
6676

6777
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.

ocr/developer-reference/recognize-image/send-for-recognition/_index.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
weight: 10
3-
date: "2023-11-27"
3+
date: "2023-12-20"
44
author: "Vladimir Lapin"
55
type: docs
66
url: /send-image-for-recognition/
@@ -39,6 +39,12 @@ The image and recognition parameters are provided in JSON format in the request
3939
}
4040
```
4141

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+
4248
## Providing an image
4349

4450
The image is provided in a value of `image` property as a Base64 encoded string.

ocr/getting-started/subscription/_index.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
weight: 30
3-
date: "2023-11-27"
3+
date: "2023-12-20"
44
author: "Vladimir Lapin"
55
type: docs
66
url: /subscription/
@@ -29,6 +29,7 @@ You can try Aspose.OCR Cloud without subscribing for a paid plan and even withou
2929

3030
Method | Limitations
3131
------ | -----------
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.
3233
[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>
3334

3435
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

Comments
 (0)