我做什么:
1.我从https://github.com/Kurento/kms-opencv-plugin-sample下载了更新的 opencv_plugin-sample 。
2.使用cmake-gui运行cmakelist,生成libkmsopencvpluginsamplemodule.so
我必须做的:
1.现在我需要为 opencv-plugin-sample 编写kms-client-js以在浏览器中运行
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,将kurento-module-crowddetector.js路径替换为index.js中的OpencvPluginSample.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-js?