0

我想计算下图中的人数,
我相信使用 Microsoft vision api 或 custom vision api 是可能的,但现在我无法登录微软认知服务。
任何人都可以确认,是否可以使用 MS 认知服务?
在此处输入图像描述

4

3 回答 3

1

自定义视觉 API 和计算机视觉 API 现在都支持对象检测功能。

如果您有现有的数据集或者可以标记数据集,则可以使用自定义视觉先训练模型,然后在看不见的图像中检测相似的人。如果您对不需要培训的通用人体检测器没问题,那么您可以使用Computer Vision API

于 2019-04-11T00:15:17.830 回答
1

通过 Microsoft 认知服务提供的任何 Vision API 目前不支持对图像中的对象进行计数。

于 2017-06-05T20:24:58.323 回答
1

您可以使用此网址自行测试 - https://azure.microsoft.com/en-us/services/cognitive-services/computer-vision/ -> 转到“识别名人和地标” 这是什么输出

{
"categories": [
{
  "name": "plant_tree",
  "score": 0.45703125,
  "detail": null
}
],
"adult": null,
"tags": [
{
  "name": "grass",
  "confidence": 0.99937587976455688
},
{
  "name": "field",
  "confidence": 0.94717073440551758
},
{
  "name": "people",
  "confidence": 0.65122932195663452
},
{
  "name": "grassy",
  "confidence": 0.546949565410614
},
{
  "name": "lush",
  "confidence": 0.11115188896656036
}
],
"description": {
"tags": [
  "grass",
  "kite",
  "field",
  "flying",
  "people",
  "grassy",
  "large",
  "soccer",
  "group",
  "man",
  "green",
  "walking",
  "dog",
  "playing",
  "many",
  "hill",
  "woman",
  "blue",
  "standing",
  "crowd",
  "ball"
 ],
 "captions": [
  {
    "text": "a group of people flying kites in a field",
    "confidence": 0.7429714961690741
  }
 ]
 },


 "requestId": "ba0592e6-1449-450e-a00f-a551ed0da4a8",
  "metadata": {
    "width": 160,
    "height": 120,
    "format": "Jpeg"
  },



"faces": [],
  "color": {
    "dominantColorForeground": "Green",
    "dominantColorBackground": "Green",
    "dominantColors": [
      "Green"
    ],
    "accentColor": "718E39",
    "isBWImg": false
  },
  "imageType": {
    "clipArtType": 0,
    "lineDrawingType": 0
  }
}

它以 0.65% 的置信度识别人

我尝试使用更清晰的图像并以“面孔”的形式计算人数 在此处输入图像描述

于 2017-08-22T23:51:42.450 回答