我的所作所为:
1.我从https://github.com/Kurento/kms-opencv-plugin-sample下载了更新的opencv_plugin-sample。
2.使用cmake-gui运行cmakelist并生成 libkmsopencvpluginsamplemodule.so
我必须做什么:
1.现在我需要编写 kms-client-js ,以便在浏览器中运行opencv-plugin-sample
2.我遵循http://doc-kurento.readthedocs.org/en/stable/mastering/develop_kurento_modules.html
的指示 cmake .. -DGENERATE_JS_CLIENT_PROJECT=TRUE
3.我使用上面的命令将生成的js文件添加到kurento-crowddetector-client-js,用 index.js <中的OpencvPluginSample.js路径替换kurento-module-crowddetector.js路径/强>
4.当我从客户端路径运行 http-server 时,我收到以下错误
KurentoClient.js:15 Uncaught ReferenceError: require is not defined
OpencvPluginSample.js:17 Uncaught ReferenceError: require is not defined
index.js:64 Uncaught TypeError: Cannot read property 'register' of undefined
5.我需要做些什么来继续前进? 是否有任何文档可以为opencv-plugin-sample生成client-j?