我正在尝试使用 AWS Rekognition、detect_text API。我正在使用 Boto3 和 Python 3。
这是我的相关代码:
with open(file_path, 'rb') as file:
data = file.read()
response = self._rekognition.detect_text(Image={'Bytes': data})
此代码适用于 Python2.7,但适用于 Python3。我收到以下错误:
File "...", line 39, in extract_text
response = self._rekognition.detect_text(Image={'Bytes': data})
...
...
k_date = self._sign(('AWS4' + key).encode('utf-8'),
TypeError: Can't convert 'bytes' object to str implicitly
任何想法我需要在这里改变。