Skip to content

Instantly share code, notes, and snippets.

@neonankiti
Created December 4, 2019 03:09
Show Gist options
  • Save neonankiti/417315567aeb5ae8920acba71bd57cd1 to your computer and use it in GitHub Desktop.
Save neonankiti/417315567aeb5ae8920acba71bd57cd1 to your computer and use it in GitHub Desktop.
Pose Estimation with TensorFlow Lite in Android Sample
override fun runInference() {
tflite?.run(imgData!!, heatMapArray)
mPrintPointArray = Array(2) { FloatArray(14) }
// Gaussian Filter 5*5
mMat = Mat(outputW, outputH, CvType.CV_32F)
val tempArray = FloatArray(outputW * outputH)
val outTempArray = FloatArray(outputW * outputH)
}
@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