Skip to content

Instantly share code, notes, and snippets.

@neonankiti
Last active December 5, 2019 07:11
Show Gist options
  • Save neonankiti/3667060fbd08fd9ec9638f77af2a209a to your computer and use it in GitHub Desktop.
Save neonankiti/3667060fbd08fd9ec9638f77af2a209a to your computer and use it in GitHub Desktop.
Pose Estimation with TensorFlow Lite in Android Sample
init {
imgData = ByteBuffer.allocateDirect(
DIM_BATCH_SIZE
* imageSizeX
* imageSizeY
* DIM_PIXEL_SIZE // 3
* numBytesPerChannel
)
imgData!!.order(ByteOrder.nativeOrder())
}
@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