如何通过 OpenCV 在 Eclipse 中使用代码补全
我想在 Eclipse 上完成 Opencv 2.3 的源代码完成工作。 我怎样才能做到这一点? 程序运行良好,但出现 [ctrl+space] 补全:“无默认建议”。
I would like to make work the source code completion for Opencv 2.3 on Eclipse.
How can i do that?
Programs work fine but the completion [ctrl+space] appears: "No default proposals".
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您尝试使用我
在文件 site-packages/cv.py 中找到的 python 的 opencv,对于这种情况,我必须使用 import:
来使代码完成正常工作。
If you are trying to use python's opencv I've found
in the file site-packages/cv.py, for this case I've had to use an import of:
to get the code completion to work.
对于 C/C++:
在项目根目录中,创建项目的 Makefiles:
cmake -G 'Eclipse CDT4 - Unix Makefiles'
使用 Eclipse- 导入项目>文件->导入->常规->现有项目
对于 Python
For C/C++:
In your project root directory, create the project's Makefiles:
cmake -G 'Eclipse CDT4 - Unix Makefiles'
Import the project using Eclipse->File->Import->General->Existing Projects
For Python