Поделиться через


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>)

Отправьте HTTP-запрос, который заполняется с помощью предоставленного OperationSpec.

sendRequest(RequestPrepareOptions | WebResourceLike)

Отправка предоставленного httpRequest.

Сведения о конструкторе

PredictionAPIClient(ServiceClientCredentials, string, ServiceClientOptions)

Инициализирует новый экземпляр класса PredictionAPIClient.

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

Параметры

credentials
ServiceClientCredentials

Учетные данные подписки, которые однозначно идентифицируют подписку клиента.

endpoint

string

Поддерживаемые конечные точки Cognitive Services.

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientClassifyImageOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientClassifyImageOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

callback

ServiceCallback<ImagePrediction>

Обратный вызов

classifyImageUrl(string, string, ImageUrl, PredictionAPIClientClassifyImageUrlOptionalParams)

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

ImageUrl, содержащий URL-адрес изображения для оценки.

options
PredictionAPIClientClassifyImageUrlOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

ImageUrl, содержащий URL-адрес изображения для оценки.

options
PredictionAPIClientClassifyImageUrlOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

Объект {Iris.Web.Api.Models.ImageUrl}, содержащий URL-адрес оцениваемого изображения.

options
PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

Объект {Iris.Web.Api.Models.ImageUrl}, содержащий URL-адрес оцениваемого изображения.

options
PredictionAPIClientClassifyImageUrlWithNoStoreOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientClassifyImageWithNoStoreOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientClassifyImageWithNoStoreOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

callback

ServiceCallback<ImagePrediction>

Обратный вызов

detectImage(string, string, HttpRequestBody, PredictionAPIClientDetectImageOptionalParams)

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientDetectImageOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientDetectImageOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

callback

ServiceCallback<ImagePrediction>

Обратный вызов

detectImageUrl(string, string, ImageUrl, PredictionAPIClientDetectImageUrlOptionalParams)

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

ImageUrl, содержащий URL-адрес изображения для оценки.

options
PredictionAPIClientDetectImageUrlOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

ImageUrl, содержащий URL-адрес изображения для оценки.

options
PredictionAPIClientDetectImageUrlOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

Объект {Iris.Web.Api.Models.ImageUrl}, содержащий URL-адрес оцениваемого изображения.

options
PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageUrl
ImageUrl

Объект {Iris.Web.Api.Models.ImageUrl}, содержащий URL-адрес оцениваемого изображения.

options
PredictionAPIClientDetectImageUrlWithNoStoreOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientDetectImageWithNoStoreOptionalParams

Необязательные параметры

Возвращаемое значение

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

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

options
PredictionAPIClientDetectImageWithNoStoreOptionalParams

Необязательные параметры

callback

ServiceCallback<ImagePrediction>

Обратный вызов

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

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

Параметры

projectId

string

Идентификатор проекта.

publishedName

string

Указывает имя модели для оценки.

imageData
HttpRequestBody

Двоичные данные изображения. Поддерживаемые форматы: JPEG, GIF, PNG и BMP. Поддерживает изображения до 4 МБ.

callback

ServiceCallback<ImagePrediction>

Обратный вызов

Сведения о наследуемом методе

sendOperationRequest(OperationArguments, OperationSpec, ServiceCallback<any>)

Отправьте HTTP-запрос, который заполняется с помощью предоставленного OperationSpec.

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

Параметры

operationArguments
OperationArguments

Аргументы, из которым будут заполнены шаблонные значения HTTP-запроса.

operationSpec
OperationSpec

OperationSpec, используемый для заполнения httpRequest.

callback

ServiceCallback<any>

Обратный вызов при получении ответа.

Возвращаемое значение

Promise<RestResponse>

Наследуется отPredictionAPIClientContext.sendOperationRequest

sendRequest(RequestPrepareOptions | WebResourceLike)

Отправка предоставленного httpRequest.

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

Параметры

Возвращаемое значение

Наследуется отPredictionAPIClientContext.sendRequest