ICustomVisionTrainingClient.GetImagePerformancesWithHttpMessagesAsync Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Obtenha a imagem com sua previsão para uma determinada iteração de projeto.
public System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImagePerformance>>> GetImagePerformancesWithHttpMessagesAsync (Guid projectId, Guid iterationId, System.Collections.Generic.IList<Guid> tagIds = default, string orderBy = default, int? take = 50, int? skip = 0, System.Collections.Generic.Dictionary<string,System.Collections.Generic.List<string>> customHeaders = default, System.Threading.CancellationToken cancellationToken = default);
abstract member GetImagePerformancesWithHttpMessagesAsync : Guid * Guid * System.Collections.Generic.IList<Guid> * string * Nullable<int> * Nullable<int> * System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Microsoft.Rest.HttpOperationResponse<System.Collections.Generic.IList<Microsoft.Azure.CognitiveServices.Vision.CustomVision.Training.Models.ImagePerformance>>>
Public Function GetImagePerformancesWithHttpMessagesAsync (projectId As Guid, iterationId As Guid, 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 customHeaders As Dictionary(Of String, List(Of String)) = Nothing, Optional cancellationToken As CancellationToken = Nothing) As Task(Of HttpOperationResponse(Of IList(Of ImagePerformance)))
Parâmetros
- projectId
- Guid
A ID do projeto.
- iterationId
- Guid
A ID da iteração. O padrão é workspace.
Uma lista de IDs de marcas para filtrar as imagens. O padrão é todas as imagens marcadas quando nulas. Limitado a 20.
- orderBy
- String
A ordenação. O padrão é o mais recente. Os valores possíveis incluem: 'Newest', 'Oldest'
Número de imagens a serem ignoradas antes de iniciar o lote de imagens. Assume o padrão de 0.
- customHeaders
- Dictionary<String,List<String>>
Os cabeçalhos que serão adicionados à solicitação.
- cancellationToken
- CancellationToken
O token de cancelamento.
Retornos
Comentários
Esta API dá suporte para seleção de intervalo e envio em lote. Por padrão, retornará apenas as primeiras 50 imagens que correspondem às imagens. Use os parâmetros {take} e {skip} para controlar quantas imagens devem ser retornadas em um determinado lote. A filtragem está em uma relação e/ou. Por exemplo, se as IDs de marca fornecidas forem para as marcas "Dog" e "Cat", somente as imagens marcadas com Dog e/ou Cat serão retornadas
Aplica-se a
Azure SDK for .NET