我正在尝试将图像实例上传到 faceplusplus api。如果我从驱动器或 URL 上传图像,一切正常,但是当我使用图像实例时,我得到一个错误。下面是我的代码。
import image
import requests
import StringIO
from facepp import API, File
url = "http://blogs.reuters.com/great-debate/files/2013/07/obama-best.jpg"
response = requests.get(url)
img = Image.open(StringIO(response.content))
result = api.detection.detect(img = File(img), mode = 'normal')
由于使用了 Google App Engine,我必须从 url 创建一个图像实例。我应该使用什么方法将图像上传到 Faceplusplus API?
这是我得到的错误: TypeError: coercing to Unicode: need string or buffer, instance found
非常感谢您的帮助。
谢谢!