https://www.youtube.com/watch?v=chk2rRjSn5o https://www.youtube.com/watch?v=nMY0qDg16y4&t=491s
这些系列视频使用Google Compute Engine访问Google Cloud vision API。
但是,我只想在我的本地计算机上使用Google云视觉API。
我发现Cloud SDK是一个选项,但我不明白它是如何工作的。 它是否将我的电脑与Google Compute Engine相关联? 那么,我还需要为发动机买单吗?
总结一下这个问题。
有没有办法只支付Google Cloud Vision API而无需支付Google Compute Engine费用?
答案 0 :(得分:0)
TL; DR - 是的,您可以 - 它们是单独的服务,您可以单独使用它们,也可以根据需要将它们组合使用。您只需支付使用的费用。
您分享的第一个YouTube视频链接是使用Google Compute Engine (GCE),这是Google Cloud中的IaaS (Infrastructure as a Service)选项。您可以使用它来设置VM,自定义网络,实例组,负载平衡器和其他基础架构。
Google Cloud Vision是一项更具体的服务,可以帮助您进行图像分析。这是一项独立于Google Compute Engine的服务,您无需使用Google Compute Engine即可使用Cloud Vision API(如果您希望以后也可以这样做)。
换句话说 - 是的,您无需为Google Compute Engine付费即可使用Cloud Vision API。
Cloud Vision和Google Compute Engine都是Google Cloud Platform的云服务的一部分。它们都需要先创建项目(使用Google Cloud Console)和setting up billing,然后才能使用其中任何一项服务(或实际上任何Google云服务)。
以下是quickstart tutorial with detailed steps直接在浏览器中试用Cloud Vision API。
如果您更喜欢使用Cloud SDK和Cloud客户端库,则此处为detailed example with steps。