You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm completely new to emscripten so my question may be stupid, but I needed to rebuild the cv.js file to include new haar files.
But when compiling the new file it seems that it didn't include some of the modules since I receive a cv.VideoCapture is not a constructor
when calling new cv.VideoCapture(this.myVideo);
Did I made something wrong, or is the make.py file provided missing something?
Thank you.
The text was updated successfully, but these errors were encountered:
As said here it takes some time to load all the modules, so you should either wait a constant time before executing your function or bind your function to the 'onRuntimeInitialized' event:
Hello,
I'm completely new to emscripten so my question may be stupid, but I needed to rebuild the cv.js file to include new haar files.
But when compiling the new file it seems that it didn't include some of the modules since I receive a
cv.VideoCapture is not a constructor
when calling new cv.VideoCapture(this.myVideo);
Did I made something wrong, or is the make.py file provided missing something?
Thank you.
The text was updated successfully, but these errors were encountered: