Skip to content

Instantly share code, notes, and snippets.

@neonankiti
Created December 4, 2019 03:11
Show Gist options
  • Save neonankiti/eabf4405af359d4ddb90e2f2dab90881 to your computer and use it in GitHub Desktop.
Save neonankiti/eabf4405af359d4ddb90e2f2dab90881 to your computer and use it in GitHub Desktop.
Pose Estimation with TensorFlow Lite in Android Sample
override fun runInference() {
val tempArray = FloatArray(outputW * outputH)
val outTempArray = FloatArray(outputW * outputH)
for (i in 0..13) {
// doing filtering and getting maximum possibility for key points.
mPrintPointArray!![0][i] = maxX
mPrintPointArray!![1][i] = maxY
}
}
@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