Skip to content

Commit 204b755

Browse files
Merge pull request #101413 from PatrickFarley/face-name
[cog serv] Face name
2 parents d879652 + 437df6f commit 204b755

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

41 files changed

+145
-146
lines changed

articles/cognitive-services/Bing-Web-Search/quickstarts/csharp.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -255,9 +255,9 @@ Responses from the Bing Web Search API are returned as JSON. This sample respons
255255
"snippet": "Knock down barriers between you and your ideas. Enable natural and contextual interaction with tools that augment users' experiences via the power of machine-based AI. Plug them in and bring your ideas to life.",
256256
"deepLinks": [
257257
{
258-
"name": "Face API",
258+
"name": "Face",
259259
"url": "https://azure.microsoft.com/services/cognitive-services/face/",
260-
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face API from Microsoft Azure. ... Cognitive Services; Face API;"
260+
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using the Face service from Microsoft Azure. ... Cognitive Services; Face service;"
261261
},
262262
{
263263
"name": "Text Analytics",

articles/cognitive-services/Bing-Web-Search/quickstarts/java.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -209,9 +209,9 @@ Responses from the Bing Web Search API are returned as JSON. This sample respons
209209
"snippet": "Knock down barriers between you and your ideas. Enable natural and contextual interaction with tools that augment users' experiences via the power of machine-based AI. Plug them in and bring your ideas to life.",
210210
"deepLinks": [
211211
{
212-
"name": "Face API",
212+
"name": "Face",
213213
"url": "https://azure.microsoft.com/services/cognitive-services/face/",
214-
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face API from Microsoft Azure. ... Cognitive Services; Face API;"
214+
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face service from Microsoft Azure. ... Cognitive Services; Face service;"
215215
},
216216
{
217217
"name": "Text Analytics",

articles/cognitive-services/Bing-Web-Search/quickstarts/nodejs.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -158,9 +158,9 @@ Responses from the Bing Web Search API are returned as JSON. This sample respons
158158
"snippet": "Knock down barriers between you and your ideas. Enable natural and contextual interaction with tools that augment users' experiences via the power of machine-based AI. Plug them in and bring your ideas to life.",
159159
"deepLinks": [
160160
{
161-
"name": "Face API",
161+
"name": "Face",
162162
"url": "https://azure.microsoft.com/services/cognitive-services/face/",
163-
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face API from Microsoft Azure. ... Cognitive Services; Face API;"
163+
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face service from Microsoft Azure. ... Cognitive Services; Face service;"
164164
},
165165
{
166166
"name": "Text Analytics",

articles/cognitive-services/Bing-Web-Search/quickstarts/php.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,9 +173,9 @@ Responses from the Bing Web Search API are returned as JSON. This sample respons
173173
"snippet": "Knock down barriers between you and your ideas. Enable natural and contextual interaction with tools that augment users' experiences via the power of machine-based AI. Plug them in and bring your ideas to life.",
174174
"deepLinks": [
175175
{
176-
"name": "Face API",
176+
"name": "Face",
177177
"url": "https://azure.microsoft.com/services/cognitive-services/face/",
178-
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face API from Microsoft Azure. ... Cognitive Services; Face API;"
178+
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using the Face service from Microsoft Azure. ... Cognitive Services; Face service;"
179179
},
180180
{
181181
"name": "Text Analytics",

articles/cognitive-services/Bing-Web-Search/quickstarts/ruby.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ Responses from the Bing Web Search API are returned as JSON. This sample respons
153153
"snippet": "Knock down barriers between you and your ideas. Enable natural and contextual interaction with tools that augment users' experiences via the power of machine-based AI. Plug them in and bring your ideas to life.",
154154
"deepLinks": [
155155
{
156-
"name": "Face API",
156+
"name": "Face",
157157
"url": "https://azure.microsoft.com/services/cognitive-services/face/",
158-
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using a Face API from Microsoft Azure. ... Cognitive Services; Face API;"
158+
"snippet": "Add facial recognition to your applications to detect, identify, and verify faces using the Face service from Microsoft Azure. ... Cognitive Services; Face service;"
159159
},
160160
{
161161
"name": "Text Analytics",

articles/cognitive-services/Computer-vision/Tutorials/CSharpTutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -308,4 +308,4 @@ When no longer needed, delete the folder into which you cloned the `Microsoft/Co
308308
## Next steps
309309

310310
> [!div class="nextstepaction"]
311-
> [Get started with Face API](../../Face/Tutorials/FaceAPIinCSharpTutorial.md)
311+
> [Get started with Face service](../../Face/Tutorials/FaceAPIinCSharpTutorial.md)

articles/cognitive-services/Computer-vision/Vision-API-How-to-Topics/HowtoAnalyzeVideo_Vision.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ The library contains the `FrameGrabber` class, which implements the previously d
144144

145145
To illustrate some of the possibilities, we've provided two sample apps that use the library.
146146

147-
The first sample app is a simple console app that grabs frames from the default webcam and then submits them to the Face API for face detection. A simplified version of the app is reproduced in the following code:
147+
The first sample app is a simple console app that grabs frames from the default webcam and then submits them to the Face service for face detection. A simplified version of the app is reproduced in the following code:
148148

149149
```csharp
150150
using System;
@@ -165,7 +165,7 @@ namespace BasicConsoleSample
165165
// Create grabber.
166166
FrameGrabber<DetectedFace[]> grabber = new FrameGrabber<DetectedFace[]>();
167167

168-
// Create Face API Client.
168+
// Create Face Client.
169169
FaceClient faceClient = new FaceClient(new ApiKeyServiceClientCredentials(ApiKey))
170170
{
171171
Endpoint = Endpoint
@@ -181,7 +181,7 @@ namespace BasicConsoleSample
181181
grabber.AnalysisFunction = async frame =>
182182
{
183183
Console.WriteLine($"Submitting frame acquired at {frame.Metadata.Timestamp}");
184-
// Encode image and submit to Face API.
184+
// Encode image and submit to Face service.
185185
return (await faceClient.Face.DetectWithStreamAsync(frame.Image.ToMemoryStream(".jpg"))).ToArray();
186186
};
187187

@@ -226,13 +226,13 @@ By using this approach, you can visualize the detected face immediately. You can
226226

227227
To get started with this sample, do the following:
228228

229-
1. Get API keys for the Vision APIs from [Subscriptions](https://azure.microsoft.com/try/cognitive-services/). For video frame analysis, the applicable APIs are:
230-
- [The Computer Vision API](https://docs.microsoft.com/azure/cognitive-services/computer-vision/home)
231-
- [The Face API](https://docs.microsoft.com/azure/cognitive-services/face/overview)
229+
1. Get API keys for the Vision APIs from [Subscriptions](https://azure.microsoft.com/try/cognitive-services/). For video frame analysis, the applicable services are:
230+
- [Computer Vision](https://docs.microsoft.com/azure/cognitive-services/computer-vision/home)
231+
- [Face](https://docs.microsoft.com/azure/cognitive-services/face/overview)
232232
2. Clone the [Cognitive-Samples-VideoFrameAnalysis](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/) GitHub repo.
233233
234234
3. Open the sample in Visual Studio 2015 or later, and then build and run the sample applications:
235-
- For BasicConsoleSample, the Face API key is hard-coded directly in [BasicConsoleSample/Program.cs](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/blob/master/Windows/BasicConsoleSample/Program.cs).
235+
- For BasicConsoleSample, the Face key is hard-coded directly in [BasicConsoleSample/Program.cs](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/blob/master/Windows/BasicConsoleSample/Program.cs).
236236
- For LiveCameraSample, enter the keys in the **Settings** pane of the app. The keys are persisted across sessions as user data.
237237

238238
When you're ready to integrate the samples, reference the VideoFrameAnalyzer library from your own projects.
@@ -241,7 +241,7 @@ The image-, voice-, video-, and text-understanding capabilities of VideoFrameAna
241241

242242
## Summary
243243

244-
In this article, you learned how to run near real-time analysis on live video streams by using the Face API and the Computer Vision API. You also learned how you can use our sample code to get started. To get started building your app by using free API keys, go to the [Azure Cognitive Services sign-up page](https://azure.microsoft.com/try/cognitive-services/).
244+
In this article, you learned how to run near real-time analysis on live video streams by using the Face and Computer Vision services. You also learned how you can use our sample code to get started. To get started building your app by using free API keys, go to the [Azure Cognitive Services sign-up page](https://azure.microsoft.com/try/cognitive-services/).
245245
246246
Feel free to provide feedback and suggestions in the [GitHub repository](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/). To provide broader API feedback, go to our [UserVoice site](https://cognitive.uservoice.com/).
247247

articles/cognitive-services/Content-Moderator/Review-Tool-User-Guide/Configure.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -87,14 +87,14 @@ You can delete custom tags by selecting the trash icon next to their entries on
8787

8888
The **Connectors** tab lets you manage your connectors, which are service-specific plugins that can process content in different ways as part of content [workflows](../review-api.md#workflows).
8989

90-
The default connector when you create a workflow is the Content Moderator connector, which can mark content as **adult** or **racy**, find profanity, and so on. However, you can use other connectors, listed here, as long as you have credentials for their respective services (to use the Face API connector, for example, you will need to get a [Face API](https://docs.microsoft.com/azure/cognitive-services/face/overview) subscription key).
90+
The default connector when you create a workflow is the Content Moderator connector, which can mark content as **adult** or **racy**, find profanity, and so on. However, you can use other connectors, listed here, as long as you have credentials for their respective services (to use the Face connector, for example, you will need to get a [Face](https://docs.microsoft.com/azure/cognitive-services/face/overview) subscription key).
9191

9292
The [Review tool](./human-in-the-loop.md) includes the following connectors:
9393

94-
- Emotion API
95-
- Face API
94+
- Emotion
95+
- Face
9696
- PhotoDNA Cloud Service
97-
- Text Analytics API
97+
- Text Analytics
9898

9999
### Add a connector
100100

articles/cognitive-services/Content-Moderator/Review-Tool-User-Guide/human-in-the-loop.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ The [Review tool](https://contentmoderator.cognitive.microsoft.com), when used i
2828
- Automate the creation of human [reviews](../review-api.md#reviews) when moderation API results come in.
2929
- Assign or escalate content reviews to multiple review teams, organized by content category or experience level.
3030
- Use default or custom logic filters ([workflows](../review-api.md#workflows)) to sort and track content, without writing any code.
31-
- Use [connectors](./configure.md#connectors) to process content with Microsoft PhotoDNA, Text Analytics, and Face APIs in addition to the Content Moderator APIs.
31+
- Use [connectors](./configure.md#connectors) to process content with Microsoft PhotoDNA, Text Analytics, and Face services in addition to the Content Moderator APIs.
3232
- Build your own connector to create workflows for any API or business process.
3333
- Get key performance metrics on your content moderation processes.
3434

articles/cognitive-services/Face/APIReference.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: API Reference - Face API
2+
title: API Reference - Face
33
titleSuffix: Azure Cognitive Services
44
description: API reference provides information about the Person, LargePersonGroup/PersonGroup, LargeFaceList/FaceList, and Face Algorithms APIs.
55
services: cognitive-services
@@ -13,9 +13,9 @@ ms.date: 03/01/2018
1313
ms.author: sbowles
1414
---
1515

16-
# Face API Reference List
16+
# Face API reference list
1717

18-
The Azure Face API is a cloud-based API that provides algorithms for face detection and recognition. The Face APIs comprise the following categories:
18+
Azure Face is a cloud-based service that provides algorithms for face detection and recognition. The Face APIs comprise the following categories:
1919

2020
- Face Algorithm APIs: Cover core functions such as [Detection](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395236), [Find Similar](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395237), [Verification](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f3039523a), [Identification](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395239), and [Group](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395238).
2121
- [FaceList APIs](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f3039524b): Used to manage a FaceList for [Find Similar](https://westus.dev.cognitive.microsoft.com/docs/services/563879b61984550e40cbbe8d/operations/563879b61984550f30395237).

0 commit comments

Comments
 (0)