NetsBlox / extensions

Official repository of NetsBlox extensions
https://extensions.netsblox.org
MIT License
1 stars 0 forks source link

Mediapipe expansion / jsARUCO #54

Closed samankittani closed 8 months ago

samankittani commented 8 months ago

Updated: handGestures List of added extensions: PoseLandmarker FaceLandmarker AugmentedReality (JSAruco)

in Utils, a VisionModule helper is file is added. It is added to the document as a script if a mediapipe Vision extension is loaded.

dragazo commented 8 months ago

Looks good. One thing we need to do, though, is move out any big files to a git submodule (just to keep the file size of this repo as small as possible). So basically any large files like models or binary files you can put in a separate repo that you own, and then you can just add the submodule(s) here where you need them.

Although maybe even better, you could have a separate github pages or other CDN that hosts your model files and then the code in this repo just needs to know where they're located (no submodule needed).

samankittani commented 8 months ago

Thanks for the feedback! I will move the model files to the a separate repository :).

dragazo commented 8 months ago

Looks good! Thanks, @samankittani