diff --git a/Instructions/Exercises/01-analyze-images.md b/Instructions/Exercises/01-analyze-images.md index 533eab9a..db2b1e8e 100644 --- a/Instructions/Exercises/01-analyze-images.md +++ b/Instructions/Exercises/01-analyze-images.md @@ -431,11 +431,9 @@ using (var client = new HttpClient()) client.DefaultRequestHeaders.Accept.Add(contentType); client.DefaultRequestHeaders.Add("Ocp-Apim-Subscription-Key", key); - // You can change the url to use other images in the images folder, - // such as "building.jpg" or "person.jpg" to see different results. var data = new { - url="https://github.com/MicrosoftLearning/mslearn-ai-vision/blob/main/Labfiles/01-analyze-images/Python/image-analysis/images/street.jpg?raw=true" + url = $"https://github.com/MicrosoftLearning/mslearn-ai-vision/blob/main/Labfiles/01-analyze-images/Python/image-analysis/{imageFile}?raw=true" }; var jsonData = JsonSerializer.Serialize(data); diff --git a/Instructions/Exercises/05-ocr.md b/Instructions/Exercises/05-ocr.md index ee65e16c..de3f1343 100644 --- a/Instructions/Exercises/05-ocr.md +++ b/Instructions/Exercises/05-ocr.md @@ -198,7 +198,7 @@ one of the features of the **Azure AI Vision SDK** is to read text from an image // Draw bounding box around line var drawLinePolygon = true; - // Return each line detected in the image and the position bounding box around each line + // Return the position bounding box around each line