How to use code completion into Eclipse with OpenCV

為{幸葍}努か 提交于 2019-12-01 07:31:00
TH.

For C/C++:

  1. Use CDT in Eclipse
  2. In your project root directory, create the project's Makefiles:

    cmake -G 'Eclipse CDT4 - Unix Makefiles'

  3. Import the project using Eclipse->File->Import->General->Existing Projects

  4. Enjoy code completion using Ctrl-Space

For Python

  1. Install PyDev
  2. In Eclipse Navigate to... Window->Preferences->PyDev->Interpreters
  3. Configure PyDev, selecting the Python interpreter to be used
  4. Add /usr/local/lib/python2.7/dist-packages (or other valid path(s)) to the System Libraries
  5. Add cv (or cv2) to the Forced builtins
  6. Enjoy code using Ctrl-Space

If you are trying to use python's opencv I've found

from cv2.cv import *

in the file site-packages/cv.py, for this case I've had to use an import of:

import cv2.cv as cv

#instead of

import cv

to get the code completion to work.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!