Reputation: 339
android\app\src\main\java\org\tensorflow\lite\examples\detection\CameraActivity.java:53: error: package org.tensorflow.lite.examples.detection.env does not exist
import org.tensorflow.lite.examples.detection.env.ImageUtils;
CameraActivity.java
causing errorimport org.tensorflow.lite.examples.detection.env.ImageUtils;
import org.tensorflow.lite.examples.detection.env.Logger;
env
folder. I downloaded the tensorflow code again from the tensorflow github repo and copy pasted the env folder and it is working perfectly fine now.Upvotes: 0
Views: 1196
Reputation:
For the benefit of community providing solution here
The issue was not having the
env
folder. I downloaded the tensorflow code again from the tensorflow github repo and copy pasted theenv
folder and it is working perfectly fine now (paraphrased from Lav Sharma)
Upvotes: 1