We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I got an error running the demo:Failed to link vertex and fragment shaders.
<template> <div> <img style="width: 100%" id="cat" src="../../assets/face.jpg" /> </div> </template> <script> import * as posenet from '@tensorflow-models/posenet' const imageScaleFactor = 0.5 const outputStride = 16 const flipHorizontal = false export default { data () { return {} }, methods: { async estimatePoseOnImage (imageElement) { const net = await posenet.load() const pose = await net.estimateSinglePose(imageElement, imageScaleFactor, flipHorizontal, outputStride) return pose } }, mounted: function () { const imageElement = document.getElementById('cat') const pose = this.estimatePoseOnImage(imageElement) } } </script>
can you help me. thank you!
The text was updated successfully, but these errors were encountered:
fixed "@tensorflow/tfjs": "^1.0.4"
Sorry, something went wrong.
but I still have same issue, even through I update to 1.0.4.
No branches or pull requests
I got an error running the demo:Failed to link vertex and fragment shaders.
can you help me. thank you!
The text was updated successfully, but these errors were encountered: