Skip to content

Commit

Permalink
Adding computer vision and custom vision APIs
Browse files Browse the repository at this point in the history
  • Loading branch information
David Sanchez (MSFT) authored Jan 9, 2019
1 parent 75223cd commit 5c466dd
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions Source/VisualProvision/AppSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,14 @@ public static class AppSettings

// Custom Vision
// URL example: https://southcentralus.api.cognitive.microsoft.com/customvision/v2.0/Prediction/{GUID}/image
public const string CustomVisionPredictionUrl = "INSERT YOUR COMPUTER VISION API URL HERE FOR MAGNETS RECOGNITION";
public const string CustomVisionPredictionKey = "INSERT YOUR COMPUTER VISION PREDICTION KEY HERE FOR MAGNETS RECOGNITION";
// We are providing public endpoint in a free tier to showcase how the app works, feel free to replace these values with your own cognitive services.
public const string CustomVisionPredictionUrl = "https://southcentralus.api.cognitive.microsoft.com/customvision/v2.0/Prediction/41deb215-1c77-4679-81dd-5025c3998dbf/image";
public const string CustomVisionPredictionKey = "47c6b38bf1e245449f01405c144b9aef";

// Computer Vision
// Endpoint example: https://westus.api.cognitive.microsoft.com/
public const string ComputerVisionEndpoint = "INSERT COMPUTER VISION ENDPOINT HERE FOR HANDWRITING";
public const string ComputerVisionKey = "INSERT YOUR COMPUTER VISION KEY HERE FOR HANDWRITING";
// We are providing public endpoint in a free tier to showcase how the app works, feel free to replace these values with your own cognitive services.
public const string ComputerVisionEndpoint = "https://westus.api.cognitive.microsoft.com";
public const string ComputerVisionKey = "1579a0d8658044ad9d3d75a94935699a";
}
}

0 comments on commit 5c466dd

Please sign in to comment.