我正在使用“谷歌展望”()文件_text_detection
功能,我正试图将“AnnotateImageResponse”丢给json
此前,该法典用词
client = vision.ImageAnnotatorClient()
image = vision.Image(content=image)
response = client.document_text_detection(image=image)
texts = MessageToDict(response)
text_json = json.dumps(texts)
Now it throws this error AttributeError: DESCRIPTOR
我在其他答复中尝试了所有答复,但没有答复。 我还尝试了<条码>protobuf3-to-dict,但也有错误。
from protobuf_to_dict import protobuf_to_dict
text_json = protobuf_to_dict(response)
它::
AttributeError: ListFields
我知道,我可以把这个物体放开,但我需要把它丢在json的档案中,以保持海滩。