You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/concept-categorizing-images.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,24 +1,24 @@
1
1
---
2
2
title: Image categorization - Computer Vision
3
3
titleSuffix: Azure Cognitive Services
4
-
description: Learn concepts related to the image categorization feature of the Computer Vision API.
4
+
description: Learn concepts related to the image categorization feature of the Image Analysis API.
5
5
services: cognitive-services
6
6
author: PatrickFarley
7
7
manager: nitinme
8
8
9
9
ms.service: cognitive-services
10
10
ms.subservice: computer-vision
11
11
ms.topic: conceptual
12
-
ms.date: 04/17/2019
12
+
ms.date: 07/05/2022
13
13
ms.author: pafarley
14
14
ms.custom: seodec18
15
15
---
16
16
17
17
# Categorize images by subject matter
18
18
19
-
In addition to tags and a description, Computer Vision returns the taxonomy-based categories detected in an image. Unlike tags, categories are organized in a parent/child hereditary hierarchy, and there are fewer of them (86, as opposed to thousands of tags). All category names are in English. Categorization can be done by itself or alongside the newer tags model.
19
+
In addition to tags and a description, Image Analysis can return the taxonomy-based categories detected in an image. Unlike tags, categories are organized in a parent/child hierarchy, and there are fewer of them (86, as opposed to thousands of tags). All category names are in English. Categorization can be done by itself or alongside the newer tags model.
20
20
21
-
## The 86-category concept
21
+
## The 86-category hierarchy
22
22
23
23
Computer vision can categorize an image broadly or specifically, using the list of 86 categories in the following diagram. For the full taxonomy in text format, see [Category Taxonomy](category-taxonomy.md).
Copy file name to clipboardExpand all lines: articles/cognitive-services/Computer-vision/concept-detecting-adult-content.md
+1-4Lines changed: 1 addition & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ manager: nitinme
9
9
ms.service: cognitive-services
10
10
ms.subservice: computer-vision
11
11
ms.topic: conceptual
12
-
ms.date: 10/01/2019
12
+
ms.date: 07/05/2022
13
13
ms.author: pafarley
14
14
ms.custom: seodec18
15
15
---
@@ -18,9 +18,6 @@ ms.custom: seodec18
18
18
19
19
Computer Vision can detect adult material in images so that developers can restrict the display of these images in their software. Content flags are applied with a score between zero and one so developers can interpret the results according to their own preferences.
20
20
21
-
> [!NOTE]
22
-
> Much of this functionality is offered by the [Azure Content Moderator](../content-moderator/overview.md) service. See this alternative for solutions to more rigorous content moderation scenarios, such as text moderation and human review workflows.
23
-
24
21
Try out the adult content detection features quickly and easily in your browser using Vision Studio.
Tohelpgetyourappupandrunningasquicklyaspossible, we've implemented the system that'sdescribedintheprecedingsection. It's intended to be flexible enough to accommodate many scenarios, while being easy to use. To access the code, go to the [Video frame analysis sample](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/) page on GitHub.
141
141
@@ -221,7 +221,7 @@ By using this approach, you can visualize the detected face immediately. You can
Feelfreetoprovidefeedbackandsuggestionsinthe [GitHubrepository](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/). To provide broader API feedback, go to our [UserVoice](https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858) site.
This guide will demonstrate how to perform near-real-time analysis on frames taken from a live video stream. The basic components in such a system are:
22
+
This guide will demonstrate how to perform near-real-time analysis on frames taken from a live video stream. The basic steps in this system are:
23
23
24
24
- Acquire frames from a video source
25
25
- Select which frames to analyze
26
26
- Submit these frames to the API
27
27
- Consume each analysis result that is returned from the API call
28
28
29
-
These samples are written in C# and the code can be found on GitHub here: [https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/).
29
+
These samples are written in C# and the code can be found [on GitHub](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/).
30
30
31
-
## The Approach
31
+
## Methods
32
32
33
33
There are multiple ways to solve the problem of running near-real-time analysis on video streams. We will start by outlining three approaches in increasing levels of sophistication.
34
34
35
-
### A Simple Approach
35
+
### Using infinite loop
36
36
37
37
The simplest design for a near-real-time analysis system is an infinite loop, where each iteration grabs a frame, analyzes it, and then consumes the result:
Inourfinal"producer-consumer"system, wehaveaproducerthreadthatlookssimilartoourpreviousinfiniteloop. However, insteadofconsuminganalysisresultsassoonastheyareavailable, theproducersimplyputsthetasksintoaqueuetokeeptrackofthem.
Feelfreetoprovidefeedbackandsuggestionsinthe [GitHubrepository](https://github.com/Microsoft/Cognitive-Samples-VideoFrameAnalysis/) or, for broader API feedback, on our [UserVoice](https://feedback.azure.com/d365community/forum/09041fae-0b25-ec11-b6e6-000d3a4f0858) site.
Copy file name to clipboardExpand all lines: articles/cognitive-services/Custom-Vision-Service/export-model-python.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,15 +9,15 @@ manager: nitinme
9
9
ms.service: cognitive-services
10
10
ms.subservice: custom-vision
11
11
ms.topic: how-to
12
-
ms.date: 01/05/2022
12
+
ms.date: 07/05/2022
13
13
ms.author: pafarley
14
14
ms.devlang: python
15
15
ms.custom: devx-track-python
16
16
---
17
17
18
18
# Tutorial: Run a TensorFlow model in Python
19
19
20
-
After you have[exported your TensorFlow model](./export-your-model.md) from the Custom Vision Service, this quickstart will show you how to use this model locally to classify images.
20
+
After you've[exported your TensorFlow model](./export-your-model.md) from the Custom Vision Service, this quickstart will show you how to use this model locally to classify images.
21
21
22
22
> [!NOTE]
23
23
> This tutorial applies only to models exported from "General (compact)" image classification projects. If you exported other models, please visit our [sample code repository](https://github.com/Azure-Samples/customvision-export-samples).
Copy file name to clipboardExpand all lines: articles/cognitive-services/Custom-Vision-Service/export-your-model.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,13 +9,13 @@ manager: nitinme
9
9
ms.service: cognitive-services
10
10
ms.subservice: custom-vision
11
11
ms.topic: how-to
12
-
ms.date: 10/27/2021
12
+
ms.date: 07/05/2022
13
13
ms.author: pafarley
14
14
---
15
15
16
16
# Export your model for use with mobile devices
17
17
18
-
Custom Vision Service allows classifiers to be exported to run offline. You can embed your exported classifier into an application and run it locally on a device for real-time classification.
18
+
Custom Vision Service lets you export your classifiers to be run offline. You can embed your exported classifier into an application and run it locally on a device for real-time classification.
0 commit comments