Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
818 views
in Technique[技术] by (71.8m points)

linux - How to use code completion into Eclipse with OpenCV

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".

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

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

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...