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

PredictionAPIClient class

Extends

构造函数

PredictionAPIClient(ServiceClientCredentials, string, ServiceClientOptions)

初始化 PredictionAPIClient 类的新实例。

继承属性

credentials
endpoint

方法

classifyImage(string, string, HttpRequestBody, PredictionAPIClientClassifyImageOptionalParams)
classifyImage(string, string, HttpRequestBody, PredictionAPIClientClassifyImageOptionalParams, ServiceCallback<ImagePrediction>)
classifyImage(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)
classifyImageUrl(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlOptionalParams)
classifyImageUrl(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlOptionalParams, ServiceCallback<ImagePrediction>)
classifyImageUrl(string, string, ImageUrl, ServiceCallback<ImagePrediction>)
classifyImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams)
classifyImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)
classifyImageUrlWithNoStore(string, string, ImageUrl, ServiceCallback<ImagePrediction>)
classifyImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientClassifyImageWithNoStoreOptionalParams)
classifyImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientClassifyImageWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)
classifyImageWithNoStore(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)
detectImage(string, string, HttpRequestBody, PredictionAPIClientDetectImageOptionalParams)
detectImage(string, string, HttpRequestBody, PredictionAPIClientDetectImageOptionalParams, ServiceCallback<ImagePrediction>)
detectImage(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)
detectImageUrl(string, string, ImageUrl, PredictionAPIClientDetectImageUrlOptionalParams)
detectImageUrl(string, string, ImageUrl, PredictionAPIClientDetectImageUrlOptionalParams, ServiceCallback<ImagePrediction>)
detectImageUrl(string, string, ImageUrl, ServiceCallback<ImagePrediction>)
detectImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams)
detectImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)
detectImageUrlWithNoStore(string, string, ImageUrl, ServiceCallback<ImagePrediction>)
detectImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientDetectImageWithNoStoreOptionalParams)
detectImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientDetectImageWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)
detectImageWithNoStore(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)

继承的方法

sendOperationRequest(OperationArguments, OperationSpec, ServiceCallback<any>)

发送使用提供的 OperationSpec 填充的 HTTP 请求。

sendRequest(RequestPrepareOptions | WebResourceLike)

发送提供的 httpRequest。

构造函数详细信息

PredictionAPIClient(ServiceClientCredentials, string, ServiceClientOptions)

初始化 PredictionAPIClient 类的新实例。

new PredictionAPIClient(credentials: ServiceClientCredentials, endpoint: string, options?: ServiceClientOptions)

参数

credentials
ServiceClientCredentials

唯一标识客户端订阅的订阅凭据。

endpoint

string

支持的认知服务终结点。

options
ServiceClientOptions

参数选项

继承属性详细信息

credentials

credentials: ServiceClientCredentials

属性值

继承自PredictionAPIClientContext.credentials

endpoint

endpoint: string

属性值

string

继承自PredictionAPIClientContext.endpoint

方法详细信息

classifyImage(string, string, HttpRequestBody, PredictionAPIClientClassifyImageOptionalParams)

function classifyImage(projectId: string, publishedName: string, imageData: HttpRequestBody, options?: PredictionAPIClientClassifyImageOptionalParams): Promise<ClassifyImageResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

返回

Promise<Models.ClassifyImageResponse>

classifyImage(string, string, HttpRequestBody, PredictionAPIClientClassifyImageOptionalParams, ServiceCallback<ImagePrediction>)

function classifyImage(projectId: string, publishedName: string, imageData: HttpRequestBody, options: PredictionAPIClientClassifyImageOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

classifyImage(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)

function classifyImage(projectId: string, publishedName: string, imageData: HttpRequestBody, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

classifyImageUrl(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlOptionalParams)

function classifyImageUrl(projectId: string, publishedName: string, imageUrl: ImageUrl, options?: PredictionAPIClientClassifyImageUrlOptionalParams): Promise<ClassifyImageUrlResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageUrl
ImageUrl

一个 ImageUrl,其中包含要计算的图像的 URL。

返回

Promise<Models.ClassifyImageUrlResponse>

classifyImageUrl(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlOptionalParams, ServiceCallback<ImagePrediction>)

function classifyImageUrl(projectId: string, publishedName: string, imageUrl: ImageUrl, options: PredictionAPIClientClassifyImageUrlOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageUrl
ImageUrl

一个 ImageUrl,其中包含要计算的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

classifyImageUrl(string, string, ImageUrl, ServiceCallback<ImagePrediction>)

function classifyImageUrl(projectId: string, publishedName: string, imageUrl: ImageUrl, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageUrl
ImageUrl

一个 ImageUrl,其中包含要计算的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

classifyImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams)

function classifyImageUrlWithNoStore(projectId: string, publishedName: string, imageUrl: ImageUrl, options?: PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams): Promise<ClassifyImageUrlWithNoStoreResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageUrl
ImageUrl

一个 {Iris.Web.Api.Models.ImageUrl},其中包含要评估的图像的 URL。

返回

Promise<Models.ClassifyImageUrlWithNoStoreResponse>

classifyImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)

function classifyImageUrlWithNoStore(projectId: string, publishedName: string, imageUrl: ImageUrl, options: PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageUrl
ImageUrl

一个 {Iris.Web.Api.Models.ImageUrl},其中包含要评估的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

classifyImageUrlWithNoStore(string, string, ImageUrl, ServiceCallback<ImagePrediction>)

function classifyImageUrlWithNoStore(projectId: string, publishedName: string, imageUrl: ImageUrl, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageUrl
ImageUrl

一个 {Iris.Web.Api.Models.ImageUrl},其中包含要评估的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

classifyImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientClassifyImageWithNoStoreOptionalParams)

function classifyImageWithNoStore(projectId: string, publishedName: string, imageData: HttpRequestBody, options?: PredictionAPIClientClassifyImageWithNoStoreOptionalParams): Promise<ClassifyImageWithNoStoreResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

返回

Promise<Models.ClassifyImageWithNoStoreResponse>

classifyImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientClassifyImageWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)

function classifyImageWithNoStore(projectId: string, publishedName: string, imageData: HttpRequestBody, options: PredictionAPIClientClassifyImageWithNoStoreOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

classifyImageWithNoStore(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)

function classifyImageWithNoStore(projectId: string, publishedName: string, imageData: HttpRequestBody, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

detectImage(string, string, HttpRequestBody, PredictionAPIClientDetectImageOptionalParams)

function detectImage(projectId: string, publishedName: string, imageData: HttpRequestBody, options?: PredictionAPIClientDetectImageOptionalParams): Promise<DetectImageResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

返回

Promise<Models.DetectImageResponse>

detectImage(string, string, HttpRequestBody, PredictionAPIClientDetectImageOptionalParams, ServiceCallback<ImagePrediction>)

function detectImage(projectId: string, publishedName: string, imageData: HttpRequestBody, options: PredictionAPIClientDetectImageOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式包括 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

detectImage(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)

function detectImage(projectId: string, publishedName: string, imageData: HttpRequestBody, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式为 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

detectImageUrl(string, string, ImageUrl, PredictionAPIClientDetectImageUrlOptionalParams)

function detectImageUrl(projectId: string, publishedName: string, imageUrl: ImageUrl, options?: PredictionAPIClientDetectImageUrlOptionalParams): Promise<DetectImageUrlResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageUrl
ImageUrl

一个 ImageUrl,其中包含要评估的图像的 URL。

返回

Promise<Models.DetectImageUrlResponse>

detectImageUrl(string, string, ImageUrl, PredictionAPIClientDetectImageUrlOptionalParams, ServiceCallback<ImagePrediction>)

function detectImageUrl(projectId: string, publishedName: string, imageUrl: ImageUrl, options: PredictionAPIClientDetectImageUrlOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageUrl
ImageUrl

一个 ImageUrl,其中包含要评估的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

detectImageUrl(string, string, ImageUrl, ServiceCallback<ImagePrediction>)

function detectImageUrl(projectId: string, publishedName: string, imageUrl: ImageUrl, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageUrl
ImageUrl

一个 ImageUrl,其中包含要评估的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

detectImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams)

function detectImageUrlWithNoStore(projectId: string, publishedName: string, imageUrl: ImageUrl, options?: PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams): Promise<DetectImageUrlWithNoStoreResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageUrl
ImageUrl

一个 {Iris.Web.Api.Models.ImageUrl},其中包含要评估的图像的 URL。

返回

Promise<Models.DetectImageUrlWithNoStoreResponse>

detectImageUrlWithNoStore(string, string, ImageUrl, PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)

function detectImageUrlWithNoStore(projectId: string, publishedName: string, imageUrl: ImageUrl, options: PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageUrl
ImageUrl

一个 {Iris.Web.Api.Models.ImageUrl},其中包含要评估的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

detectImageUrlWithNoStore(string, string, ImageUrl, ServiceCallback<ImagePrediction>)

function detectImageUrlWithNoStore(projectId: string, publishedName: string, imageUrl: ImageUrl, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageUrl
ImageUrl

一个 {Iris.Web.Api.Models.ImageUrl},其中包含要评估的图像的 URL。

callback

ServiceCallback<ImagePrediction>

回调

detectImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientDetectImageWithNoStoreOptionalParams)

function detectImageWithNoStore(projectId: string, publishedName: string, imageData: HttpRequestBody, options?: PredictionAPIClientDetectImageWithNoStoreOptionalParams): Promise<DetectImageWithNoStoreResponse>

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式为 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

返回

Promise<Models.DetectImageWithNoStoreResponse>

detectImageWithNoStore(string, string, HttpRequestBody, PredictionAPIClientDetectImageWithNoStoreOptionalParams, ServiceCallback<ImagePrediction>)

function detectImageWithNoStore(projectId: string, publishedName: string, imageData: HttpRequestBody, options: PredictionAPIClientDetectImageWithNoStoreOptionalParams, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式为 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

detectImageWithNoStore(string, string, HttpRequestBody, ServiceCallback<ImagePrediction>)

function detectImageWithNoStore(projectId: string, publishedName: string, imageData: HttpRequestBody, callback: ServiceCallback<ImagePrediction>)

参数

projectId

string

项目 ID。

publishedName

string

指定要对其计算的模型的名称。

imageData
HttpRequestBody

二进制图像数据。 支持的格式为 JPEG、GIF、PNG 和 BMP。 支持最大 4MB 的映像。

callback

ServiceCallback<ImagePrediction>

回调

继承的方法详细信息

sendOperationRequest(OperationArguments, OperationSpec, ServiceCallback<any>)

发送使用提供的 OperationSpec 填充的 HTTP 请求。

function sendOperationRequest(operationArguments: OperationArguments, operationSpec: OperationSpec, callback?: ServiceCallback<any>): Promise<RestResponse>

参数

operationArguments
OperationArguments

将从中填充 HTTP 请求的模板化值的参数。

operationSpec
OperationSpec

用于填充 httpRequest 的 OperationSpec。

callback

ServiceCallback<any>

接收响应时要调用的回调。

返回

Promise<RestResponse>

继承自PredictionAPIClientContext.sendOperationRequest

sendRequest(RequestPrepareOptions | WebResourceLike)

发送提供的 httpRequest。

function sendRequest(options: RequestPrepareOptions | WebResourceLike): Promise<HttpOperationResponse>

参数

返回

继承自PredictionAPIClientContext.sendRequest