我正在尝试使用以下Python代码从Google获取图片:
BASE_URL = 'https://ajax.googleapis.com/ajax/services/search/images?v=1.0&rsz=large&q=%s&start=%d'
BASE_URL = BASE_URL %(name, count)
request = urllib2.Request(BASE_URL)
response = urllib2.urlopen(request)
然后我使用simplejson以JSON格式加载响应。 有什么方法可以使用“按图搜索”类型作为“面部”,以便我只能使用Python检索面部?
答案 0 :(得分:0)