Shaun Parkison
Shaun Parkison
Any update on this? You mentioned it could be done, but would be clunky it sounds like. So does that mean you're not going to work on fixing this issue?...
Set fixed. Confirmed working.
This is b/c [TensorFlow-experimental](https://cocoapods.org/pods/TensorFlow-experimental) is currently at version 1.1. Currently, the only way to get a newer version of TF is to [build it yourself](https://www.tensorflow.org/mobile/ios_build) For now, your best be...
@AnthonyNTK, do you mind letting me know how you managed to make it work with base64 images? I'm running into an issue where I'm not able to use `require` and...
Thanks @AnthonyNTK! So you're just doing something like this then? ``` const results = await tfImageRecognition.recognize({ image: `${RNFS.DocumentDirectoryPath}/temp.png`, }) ``` as apposed to this ``` const results = await tfImageRecognition.recognize({...
@reneweb thank you! I'll give it a shot. I tried passing the path and it didn't seem to work, I'll try it again and see what I get...
Hey @reneweb, still not able to load in a file using the path, something like `file:///var/mobile/Containers/Data/Application/89317E57-4EFF-49F4-90DC-62588E435374/Documents/sample_6.jpg` When setting breakpoints in the `ImageRecognizer.mm` file where the check is, around line 56,...
Got it! It was the `file://` I prepended to the path. Other libraries I've used prefer this, apparently the `fileExistsAtPath` method just expects the full path. Sorry to spam this...
@DeniferSantiago is correct: > I think the error is that you do not have the focus on the input, you should try to press the center of the screen and...
@pepe84, ran into this same issue. See here for details: https://www.answeroverflow.com/m/1192802009548595320 solution is to load this plugin FIRST in the panel, above all others in the `->plugins([])` hope this helps!