有没有一种方法可以使用 Expo React Native 从图像中检测文本?
Is there a way I can detect text from an Image using Expo React Native?
我正在使用 Expo
、React Native
,我希望能够从图像中检测文本。有没有我可以使用的软件包来实现这个目标?
我正在使用 Expo camera module
拍照并将 URI 提供给文本检测器
我曾尝试使用 react-native-text-detector,但我收到未定义函数 detectFromUri 的错误。我也尝试过使用 tesserect.js 但它在使用 "unable to resolve variable location".
导入时失败
await this.camera.takePictureAsync(options).then(photo => {
photo.exif.Orientation = 1;
//console.log(photo.uri);
const visionResp = await RNTextDetector.detectFromUri(photo.uri);
if (!(visionResp && visionResp.length > 0)) {
throw "UNMATCHED";
}
console.log(visionResp);
});
我期待 visionResp 记录检测返回的结果,但我却得到 undefined is not an object (evaluating '_reactNativeTextDetector.default.detectFromUri')
我正在使用 Expo
、React Native
,我希望能够从图像中检测文本。有没有我可以使用的软件包来实现这个目标?
我正在使用 Expo camera module
拍照并将 URI 提供给文本检测器
我曾尝试使用 react-native-text-detector,但我收到未定义函数 detectFromUri 的错误。我也尝试过使用 tesserect.js 但它在使用 "unable to resolve variable location".
await this.camera.takePictureAsync(options).then(photo => {
photo.exif.Orientation = 1;
//console.log(photo.uri);
const visionResp = await RNTextDetector.detectFromUri(photo.uri);
if (!(visionResp && visionResp.length > 0)) {
throw "UNMATCHED";
}
console.log(visionResp);
});
我期待 visionResp 记录检测返回的结果,但我却得到 undefined is not an object (evaluating '_reactNativeTextDetector.default.detectFromUri')