如何从Google Vision API中的image_properties获取颜色百分比?

时间:2019-06-27 06:53:33

标签: google-cloud-storage google-cloud-vision google-vision

我正在尝试使用Google Vision API进行颜色检测。为此,我正在使用python库。当我获取image_properties时,得到类似以下的结果

colors {
  color {
    red: 52.0
    green: 94.0
    blue: 96.0
  }
  score: 0.11754503101110458
  pixel_fraction: 0.04190981388092041
}

但是如何计算在这种情况下为“ 18%”

的百分比

Actual Output of the Google Vision Api

1 个答案:

答案 0 :(得分:0)

我认为您已经使用result获得了Vision demo。该百分比( 18%)是通过将每个颜色记录的score除以所有分数的总和得出的:

  

%“百分比” =得分/(得分1 +得分2 +得分3 + ... +得分N)