1

我做什么:

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?

4

1 回答 1

2

您不需要生成kms-client-js。从该错误来看,您似乎正在将 Node 模块添加到浏览器应用程序中。在将其添加到客户端代码之前,您需要浏览该模块。

于 2016-03-14T13:50:51.700 回答