Skip to content

Instantly share code, notes, and snippets.

@neonankiti
Created December 3, 2019 14:01
Show Gist options
  • Save neonankiti/f685efe5193769a9b7018825a256fd1c to your computer and use it in GitHub Desktop.
Save neonankiti/f685efe5193769a9b7018825a256fd1c to your computer and use it in GitHub Desktop.
Pose Estimation with TensorFlow Lite in Android Sample
private fun startBackgroundThread() {
backgroundThread = HandlerThread(HANDLE_THREAD_NAME)
backgroundThread!!.start()
backgroundHandler = Handler(backgroundThread!!.looper)
synchronized(lock) {
runClassifier = true
}
backgroundHandler!!.post(periodicClassify)
}
@neonankiti
Copy link
Author

This is copy of https://github.com/edvardHua/PoseEstimationForMobile/ projects.
This software includes the work that is distributed in the Apache License 2.0.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment