iOS 8.0.33 也不行,官方 demo 的也无响应。 https://github.com/wechat-miniprogram/miniprogram-demo
OCR接口无反应?OCR检测异常VisionKit从基础库 2.27.0版本开始提供 OCR 能力。 // 静态图片检测模式下,每调一次 runOCR 接口就会触发一次 updateAnchors 事件 session.on('updateAnchors', anchors => { console.log('anchors.text', "".concat(anchors.map(anchor=>anchor.text))) }) session.start(errno => { if (errno) { // 如果失败,将返回 errno } else { // 否则,返回null,表示成功 session.runOCR({ frameBuffer, // 图片 ArrayBuffer 数据。待检测图像的像素点数据,每四项表示一个像素点的 RGBA width, // 图像宽度 height, // 图像高度 }) } }) 按demo调用 runOCR, 程序没报错,也无任何提示, updateAnchors没有接收到任何信息, 没法识别文字? 还是有其他问题? 还是现在OCR现在不对其他人开放呢?
2023-03-238.0.33 也不行,官方 demo 的也无响应。 https://github.com/wechat-miniprogram/miniprogram-demo
执行VKSession.runOCR后,为什么没有收到识别回调?如下代码 this.session = wx.createVKSession({ track: { OCR: { mode: 2 } }, version: 'v1', }); this.session.on('updateAnchors', anchors => { console.log(TAG, 'init VisionKit updateAnchors', JSON.stringify(anchors)); anchors.map((anchor) => { console.log('init VisionKit updateAnchors text', anchor.text); }); }) this.session.start(errno => { logger.info(TAG, 'init VisionKit error:', errno); if (errno) { return; } }); this.session?.runOCR({ frameBuffer: this.imgData.data.buffer, width: this.data.ocrImgOriginWidth, height: this.data 如标题所描述:拍照或者返回照片后,进行ocr识别,没有反应, 微信版本:8.0.32 小程序基础库版本:2.30.0, 但是同样的代码,微信版本降级到8.0.28后,对应的小程序库版本是2.27.3,这段代码就可以识别出文字, 请大神帮忙看下是什么原因?
2023-03-23