Skip to content

Instantly share code, notes, and snippets.

@neonankiti
Last active December 3, 2019 14:36
Show Gist options
  • Save neonankiti/8df89088e0bb0f11ed4fb5c8a62367a7 to your computer and use it in GitHub Desktop.
Save neonankiti/8df89088e0bb0f11ed4fb5c8a62367a7 to your computer and use it in GitHub Desktop.
Pose Estimation with TensorFlow Lite in Android Sample
fun create(
activity: Activity,
imageSizeX: Int = 192,
imageSizeY: Int = 192,
outputW: Int = 96,
outputH: Int = 96,
modelPath: String = "model.tflite",
numBytesPerChannel: Int = 4
): ImageClassifierFloatInception =
ImageClassifierFloatInception(
activity,
imageSizeX,
imageSizeY,
outputW,
outputH,
modelPath,
numBytesPerChannel)
@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