使用 Azure 认知服务(更准确地说是计算机视觉),您可以获得图像的类别、标签、标题甚至更多信息。处理所有图像将为您的图像池提供标签。这使您能够获得基于(多个)相同标签的相似图像。
此功能返回有关在图像中找到的视觉内容的信息。使用标记、描述和特定领域的模型来识别内容并自信地标记它。应用成人/色情设置以启用成人内容的自动限制。识别图片中的图像类型和配色方案。
计算机视觉 API 的(部分)结果示例:
Description{
"Tags": [
"train",
"platform",
"station",
"building",
"indoor",
"subway",
"track",
"walking",
"waiting",
"pulling",
"board",
"people",
"man",
"luggage",
"standing",
"holding",
"large",
"woman",
"yellow",
"suitcase"
],
"Captions": [
{
"Text": "people waiting at a train station",
"Confidence": 0.8331026
}
]
}
Tags[
{
"Name": "train",
"Confidence": 0.9975446
},
{
"Name": "platform",
"Confidence": 0.995543063
},
{
"Name": "station",
"Confidence": 0.9798007
},
{
"Name": "indoor",
"Confidence": 0.927719653
},
{
"Name": "subway",
"Confidence": 0.838939846
},
{
"Name": "pulling",
"Confidence": 0.431715637
}
]