react-native-text-recognition
react-native-text-recognition copied to clipboard
"visionIgnoreThreshold" is not functioning in react-native-text-recognition
I am using the react-native-text-recognition package in my React Native project. However, when I attempt to use the visionIgnoreThreshold property to filter out low-confidence text results, it does not seem to work, its giving an error
using it like this :-
const result = await TextRecognition.recognize(path, {
visionIgnoreThreshold: 0.5,
});