Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

LAB01-LAB02: Some changes in C# code #11

Merged
merged 2 commits into from
May 10, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 1 addition & 3 deletions Instructions/Exercises/01-analyze-images.md
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down
2 changes: 1 addition & 1 deletion Instructions/Exercises/05-ocr.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down