你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

CustomVisionTrainingClientExtensions.GetTaggedImagesAsync 方法

定义

获取给定项目迭代的标记图像。

public static System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Image>> GetTaggedImagesAsync (this Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient operations, Guid projectId, Guid? iterationId = default, System.Collections.Generic.IList<Guid> tagIds = default, string orderBy = default, int? take = 50, int? skip = 0, System.Threading.CancellationToken cancellationToken = default);
static member GetTaggedImagesAsync : Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.ICustomVisionTrainingClient * Guid * Nullable<Guid> * System.Collections.Generic.IList<Guid> * string * Nullable<int> * Nullable<int> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.Image>>
<Extension()>
Public Function GetTaggedImagesAsync (operations As ICustomVisionTrainingClient, projectId As Guid, Optional iterationId As Nullable(Of Guid) = Nothing, Optional tagIds As IList(Of Guid) = Nothing, Optional orderBy As String = Nothing, Optional take As Nullable(Of Integer) = 50, Optional skip As Nullable(Of Integer) = 0, Optional cancellationToken As CancellationToken = Nothing) As Task(Of IList(Of Image))

参数

operations
ICustomVisionTrainingClient

此扩展方法的操作组。

projectId
Guid

项目 ID。

iterationId
Nullable<Guid>

迭代 ID。默认为工作区。

tagIds
IList<Guid>

用于筛选图像的标记 ID 的列表。 当为 null 时,默认为所有标记的图像。 限制为 20。

orderBy
String

排序。 默认为最新。 可能的值包括:“Newest”、“Oldest”

take
Nullable<Int32>

要返回的最大图像数。 默认值为 50,限制为 256。

skip
Nullable<Int32>

开始映像批处理之前要跳过的图像数。 默认值为 0。

cancellationToken
CancellationToken

取消标记。

返回

注解

此 API 支持批处理和范围选择。 默认情况下,它只返回与图像匹配的前 50 个图像。 使用 {take} 和 {skip} 参数控制要在给定批中返回的图像数。 筛选依据为某个字词和/或关系。 例如,如果提供的标记 ID 用于“Dog”和“Cat”标记,则仅返回标记有 Dog 和/或 Cat 的图像

适用于