- 微信OCR识别接口图片大小超过2M时,压缩后识别报错的问题 错误码是 101001?
``` def resize_image(image): src_width, src_height = image.size if src_width > src_height: scale = 1080 / src_width img_height = round(src_height * scale) img_width = 1080 else: scale = 1080 / src_height img_width = round(src_width * scale) img_height = 1080 # cannot write mode RGBA as JPEG if image.mode != "RGB": image = image.convert("RGB") image.resize((img_width, img_height), Image.ANTIALIAS).save( new_img, "JPEG", quality=85, optimize=True ) ``` 使用python压缩的图片,我柑橘可能压缩后影响识别成功率,不知道有没有大佬遇到这种问题的
2020-12-24 - 微信OCR识别银行卡,报错101001,什么原因呢?
接口是这个 ``` https://api.weixin.qq.com/cv/ocr/bankcard?type=MODE&img_url=ENCODE_URL&access_token=ACCESS_TOCKEN ``` 经常会报错 {'errcode': 101001, 'errmsg': 'certificate not found hint: [btMu_0705d141] rid: ********-***********-*********'} 但是我识别的银行卡图片肉眼也能看清楚啊,然后我单独去跑api识别图片又能够识别出结果,为什么同样的图片识别有时候会失败有时候成功呢
2020-12-24