- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在尝试使用计算机视觉 .NET SDK 调用 Azure 认知计算机视觉服务 API 来分析图像。
我的代码如下:
List<VisualFeatureTypes> features1 = new List<VisualFeatureTypes>()
{
VisualFeatureTypes.Categories, VisualFeatureTypes.Description,
VisualFeatureTypes.Faces, VisualFeatureTypes.ImageType,
VisualFeatureTypes.Tags, VisualFeatureTypes.Adult,
VisualFeatureTypes.Color, VisualFeatureTypes.Brands,
VisualFeatureTypes.Objects
};
ComputerVisionClient client =
new ComputerVisionClient(new ApiKeyServiceClientCredentials(key))
{ Endpoint = endpoint};
ImageAnalysis results = await client.AnalyzeImageAsync(imageUrl, features1);
我收到以下错误消息:
cannot convert type'system.collections.generic.List<microsoft.azure.cognitiveservices.vision.computervision.models.visualfeaturetypes>'to type'system.collections.generic.IList<microsoft.azure.cognitiveservices.vision.computervision.models.visualfeaturetypes?>'.
有什么解决办法吗?
最佳答案
这是sample用于计算机视觉SDK,使用计算机视觉分析图像。
public static async Task<ImageAnalysis> AnalyzeImageAsync(this IComputerVisionClient operations, string url, IList<VisualFeatureTypes?> visualFeatures = default(IList<VisualFeatureTypes?>), IList<Details?> details = default(IList<Details?>), string language = default(string), IList<DescriptionExclude?> descriptionExclude = default(IList<DescriptionExclude?>), CancellationToken cancellationToken = default(CancellationToken))
{
using (var _result = await operations.AnalyzeImageWithHttpMessagesAsync(url, visualFeatures, details, language, descriptionExclude, null, cancellationToken).ConfigureAwait(false))
{
return _result.Body;
}
}
关于azure - 无法转换为类型 'system.collections.generic.IList<microsoft.azure.cognitiveservices.vision.computervision.models.visualfeaturetypes?>',我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64394142/
我正在使用 Microsoft Cognitive Services nodejs 的 api。我有以下代码 const cognitiveServices = require('cognitive-
我正在按照 Microsoft ( https://learn.microsoft.com/nl-nl/azure/cognitive-services/Computer-vision/quickst
我正在按照 Microsoft ( https://learn.microsoft.com/nl-nl/azure/cognitive-services/Computer-vision/quickst
尝试使用以下命令, pip3 install azure-cognitiveservices-speech python3 -m pip install --upgrade pip import az
我正在尝试使用 azure 的 bing 搜索 api。我已使用 pip(使用 python -m pip install azure-cognitiveservices-search-websear
按照此处的指南安装 microsoft azure text to Speech SDK:https://docs.microsoft.com/en-us/azure/cognitive-servic
我正在尝试在 VS Code 中通过 Jupyter 在 Mac 上使用 microsoft azure 自定义视觉服务 我安装了 Python 3.8.3。 我已经完成 pip install az
原始问题 我无法使用 pip 在 docker 容器中安装 azure-cognitiveservices-speech。我的容器运行良好,并且能够使用以下 dockerfile 安装所有其他软件包(
原始问题 我无法使用 pip 在 docker 容器中安装 azure-cognitiveservices-speech。我的容器运行良好,并且能够使用以下 dockerfile 安装所有其他软件包(
我正在测试 Microsoft Azure 语音服务,特别是尝试使用文本转语音。因此,我使用 Azure 的免费层,并创建了一个 TimeTrigger Azure 函数来读取电子邮件、遍历 HTML
我使用 Microsoft 的语音转文本服务的任何方法都会失败,并给出错误: Speech Recognition canceled: CancellationReason.ErrorError de
我使用 Microsoft 的语音转文本服务的任何方法都会失败,并给出错误: Speech Recognition canceled: CancellationReason.ErrorError de
我正在向 Azure 认知服务(情感 API)发布请求,该请求返回一个嵌套 JSON 对象,如下所示(这是一个 JSON.stringify 对象输出): { "error": "{\"documen
我有一个使用 Bot Framework 的 C# 语言的聊天机器人,我正在使用 Luis api 来识别用户输入的意图,但我收到一条错误消息:未经授权。访问 token 丢失、无效、受众不正确 (
错误消息我正在尝试上传合理大小的图像(大约 20KB)。但根据文档,大小为1KB到6MB的图片是可以上传的。我希望程序的某些部分需要修改以纠正错误。 File "add_person_faces.
我正在使用 microsoft-congnitiveservices-speech-sdk npm 包,一切运行良好。但我现在随机收到一个错误。要么因浏览器更新或次要软件包更新而中断(?) 'Unab
出现以下错误, user@example-admin:/usr/lib/python3.6$ pip3 install azure.cognitiveservices.speech Defaultin
我正在尝试使用计算机视觉 .NET SDK 调用 Azure 认知计算机视觉服务 API 来分析图像。 我的代码如下: List features1 = new List() { Visual
我正在尝试使用计算机视觉 .NET SDK 调用 Azure 认知计算机视觉服务 API 来分析图像。 我的代码如下: List features1 = new List() { Visual
我目前正在使用 the OCR labeling tool 训练自定义模型(手动标记)我注意到模型存储在 https:///formrecognizer/v2.0-preview/custom/mod
我是一名优秀的程序员,十分优秀!