Skip to content

Commit b76fba5

Browse files
committed
ocr inline buttons
1 parent 66ef135 commit b76fba5

File tree

6 files changed

+50
-1
lines changed

6 files changed

+50
-1
lines changed

articles/cognitive-services/Computer-vision/includes/curl-quickstart.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,9 @@ Use the Optical character recognition REST API to read printed and handwritten t
2828
* [cURL](https://curl.haxx.se/) installed
2929

3030

31+
> [!div class="nextstepaction"]
32+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Vision&Product=OCR&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
33+
3134
## Read printed and handwritten text
3235

3336
The OCR service can extract visible text in an image or document and convert it to a character stream. For more information on text extraction, see the [Optical character recognition (OCR) overview](../overview-ocr.md).
@@ -71,6 +74,9 @@ curl -v -X POST "https://westcentralus.api.cognitive.microsoft.com/vision/v3.2/r
7174
curl -v -X GET "https://westcentralus.api.cognitive.microsoft.com/vision/v3.2/read/analyzeResults/{operationId}" -H "Ocp-Apim-Subscription-Key: {subscription key}" --data-ascii "{body}"
7275
```
7376

77+
> [!div class="nextstepaction"]
78+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Vision&Product=OCR&Page=quickstart&Section=Read-printed-and-handwritten-text" target="_target">I ran into an issue</a>
79+
7480
### Examine the response
7581

7682
A successful response is returned in JSON. The sample application parses and displays a successful response in the command prompt window, similar to the following example:
@@ -133,7 +139,8 @@ A successful response is returned in JSON. The sample application parses and dis
133139

134140
```
135141

136-
142+
> [!div class="nextstepaction"]
143+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=REST&Pillar=Vision&Product=OCR&Page=quickstart&Section=Output" target="_target">I ran into an issue</a>
137144
138145
## Next steps
139146

articles/cognitive-services/Computer-vision/includes/ocr-studio-quickstart.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@ ms.author: pafarley
1717

1818
* Sign in to [Vision Studio](https://portal.vision.cognitive.azure.com/) with your Azure subscription and Cognitive Services resource. See the [Get started section](../overview-vision-studio.md#get-started-using-vision-studio) of the overview if you need help with this step.
1919

20+
> [!div class="nextstepaction"]
21+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Vision-studio&Pillar=Vision&Product=OCR&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
22+
2023
## Read printed and handwritten text
2124

2225
1. Select the **Extract text** tab, and select panel titled **Extract text from images**.
@@ -25,6 +28,9 @@ ms.author: pafarley
2528
1. After you select your image, you'll see the extracted text appear in the output window. You can also select the **JSON** tab to see the JSON output that the API call returns.
2629
1. Below the try-it-out experience are next steps to start using this capability in your own application.
2730

31+
> [!div class="nextstepaction"]
32+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=Vision-studio&Pillar=Vision&Product=OCR&Page=quickstart&Section=Read-printed-and-handwritten-text" target="_target">I ran into an issue</a>
33+
2834
## Next steps
2935

3036
In this quickstart, you used Vision Studio to access the Read API. Next, learn more about the Read API features.

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/csharp-sdk.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,10 @@ Use the OCR client library to read printed and handwritten text from a remote im
2929
* You will need the key and endpoint from the resource you create to connect your application to the Computer Vision service. You'll paste your key and endpoint into the code below later in the quickstart.
3030
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
3131

32+
> [!div class="nextstepaction"]
33+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Vision&Product=OCR&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
34+
35+
3236
## Read printed and handwritten text
3337

3438
1. Create a new C# application.
@@ -111,6 +115,9 @@ Use the OCR client library to read printed and handwritten text from a remote im
111115

112116
---
113117

118+
> [!div class="nextstepaction"]
119+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Vision&Product=OCR&Page=quickstart&Section=Read-printed-and-handwritten-text" target="_target">I ran into an issue</a>
120+
114121
## Output
115122

116123
```console
@@ -137,6 +144,8 @@ nt Daily Values are based on Vitamin A 50%
137144
calorie diet.
138145
```
139146

147+
> [!div class="nextstepaction"]
148+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=CSHARP&Pillar=Vision&Product=OCR&Page=quickstart&Section=Output" target="_target">I ran into an issue</a>
140149
141150
## Clean up resources
142151

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/java-sdk.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ Use the OCR client library to read printed and handwritten text from a remote im
3030
* You will need the key and endpoint from the resource you create to connect your application to the Computer Vision service. You'll paste your key and endpoint into the code below later in the quickstart.
3131
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
3232

33+
> [!div class="nextstepaction"]
34+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVA&Pillar=Vision&Product=OCR&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
35+
3336
## Read printed and handwritten text
3437

3538
1. Create a new Gradle project.
@@ -109,6 +112,9 @@ Use the OCR client library to read printed and handwritten text from a remote im
109112
gradle run
110113
```
111114

115+
> [!div class="nextstepaction"]
116+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVA&Pillar=Vision&Product=OCR&Page=quickstart&Section=Read-printed-and-handwritten-text" target="_target">I ran into an issue</a>
117+
112118
## Output
113119

114120
```console
@@ -132,6 +138,9 @@ Vitamin A 50%
132138
calorie diet
133139
```
134140

141+
> [!div class="nextstepaction"]
142+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVA&Pillar=Vision&Product=OCR&Page=quickstart&Section=Output" target="_target">I ran into an issue</a>
143+
135144
## Clean up resources
136145

137146
If you want to clean up and remove a Cognitive Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it.

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/node-sdk.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ Use the Optical character recognition client library to read printed and handwri
3030
* You will need the key and endpoint from the resource you create to connect your application to the Computer Vision service. You'll paste your key and endpoint into the code below later in the quickstart.
3131
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
3232

33+
> [!div class="nextstepaction"]
34+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVASCRIPT&Pillar=Vision&Product=OCR&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
35+
3336
## Read printed and handwritten text
3437

3538
1. Create a new Node.js application.
@@ -90,6 +93,9 @@ Use the Optical character recognition client library to read printed and handwri
9093
node index.js
9194
```
9295

96+
> [!div class="nextstepaction"]
97+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVASCRIPT&Pillar=Vision&Product=OCR&Page=quickstart&Section=Read-printed-and-handwritten-text" target="_target">I ran into an issue</a>
98+
9399
## Output
94100

95101
```console
@@ -116,6 +122,9 @@ calorie diet.
116122
End of quickstart.
117123
```
118124

125+
> [!div class="nextstepaction"]
126+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=JAVASCRIPT&Pillar=Vision&Product=OCR&Page=quickstart&Section=Output" target="_target">I ran into an issue</a>
127+
119128
## Clean up resources
120129

121130
If you want to clean up and remove a Cognitive Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it.

articles/cognitive-services/Computer-vision/includes/quickstarts-sdk/python-sdk.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ Use the OCR client library to read printed and handwritten text from a remote im
3030
* You will need the key and endpoint from the resource you create to connect your application to the Computer Vision service. You'll paste your key and endpoint into the code below later in the quickstart.
3131
* You can use the free pricing tier (`F0`) to try the service, and upgrade later to a paid tier for production.
3232

33+
> [!div class="nextstepaction"]
34+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=PYTHON&Pillar=Vision&Product=OCR&Page=quickstart&Section=Prerequisites" target="_target">I ran into an issue</a>
35+
3336
## Read printed and handwritten text
3437

3538
1. Install the client library.
@@ -76,6 +79,9 @@ Use the OCR client library to read printed and handwritten text from a remote im
7679
python quickstart-file.py
7780
```
7881

82+
> [!div class="nextstepaction"]
83+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=PYTHON&Pillar=Vision&Product=OCR&Page=quickstart&Section=Read-printed-and-handwritten-text" target="_target">I ran into an issue</a>
84+
7985
## Output
8086

8187
```console
@@ -90,6 +96,9 @@ the lazy dog!
9096
End of Computer Vision quickstart.
9197
```
9298

99+
> [!div class="nextstepaction"]
100+
> <a href="https://microsoft.qualtrics.com/jfe/form/SV_0Cl5zkG3CnDjq6O?PLanguage=PYTHON&Pillar=Vision&Product=OCR&Page=quickstart&Section=Output" target="_target">I ran into an issue</a>
101+
93102
## Clean up resources
94103

95104
If you want to clean up and remove a Cognitive Services subscription, you can delete the resource or resource group. Deleting the resource group also deletes any other resources associated with it.

0 commit comments

Comments
 (0)