-
Notifications
You must be signed in to change notification settings - Fork 13
New issue
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
Is it posible to load posenet? #7
Comments
Hi! Yes in
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js"></script> and in your posenet = ml5.poseNet("http://localhost:5000/posenet", video) I haven't gotten around to documenting this or making a tutorial, but give this a try and let me know if this works! Thanks! |
Thanks @joeyklee for this awesome work; Unfortunately I get 404 error, trying to load posenet. |
same here.
I guess I am also a bit unclear about the location of where I cd to I should also mention that I used the Brackets IDE, which opens a live browser view at |
Anybody got this working? I need to run PoseNet offline for an upcoming installation, so very interested in case someone figured this out :-) |
yes I got it running locally. added this to index.html
before running my JS project that uses ml5js I did:
|
Thanks @stephanschulz ! I followed the steps and seem to have downloaded the models + run them via npm, but it returns a 404:
Any chance I could see your posenet code (html + js), to learn what I did wrong? |
maybe the local server that I will put together a simple example in a bit and post it here. |
|
Wow, thank you so much @stephanschulz ! I got it working thanks to your guidance and example 🥳. Really appreciate all your help. |
I have the same issue, I did exactly same(run the server and using bracket) I even couldn't find the ml5.min.js in the folder so tried to download it from the CDN and put it into the folder but still no luck... Any clues or solutions? Thank you |
Hello!
I used posenet this way:
<script src="https://unpkg.com/[email protected]/dist/ml5.min.js"></script> <script> let video = createCapture(VIDEO); let poseNet = ml5.poseNet(video); ... ... </script>Is it possible to use it in the same way with your repo offline?
If yes how?
Thanks!
The text was updated successfully, but these errors were encountered: