frogermcs/TFLite-Tester

frame processor initialization failed

Ankit-Vohra opened this issue · 1 comments

Hello,
Your work looks pretty interesting
I tried to run your application. I was able to build the app but when I open the app, a prompt comes as "frame processor initialization failed"
In the application I can only see half screen camera and nothing else
How to check output of validation set

I am having the same issue!
Update: I think I solved this error -> "frame processor initialization failed" , I disabled asset compression for .tflite extensions in gradle:

 android {
    aaptOptions {
        noCompress "tflite"
    }
}

Now I am not getting the error but the app still shows only the camera :/
And in logcat I am seeing this line: 2020-11-13 10:01:56.551 2435-2461/com.frogermcs.imageclassificationtester D/skia: onFlyCompress every 250ms, now so sure what it means but I will try to debug it more.