at the moment i am using the IDLE of python, but I am really missing the "basic" IDE features like Code Cempletion and Suggestion of used variables. IS there an IDE that supports these and works with OpenCV? I'm pretty new to both, so I am sorry if I lack knowledge.
Asked
Active
Viewed 3,369 times
-2
-
PyCharm is a popular IDE for Python. I see no reason why it wouldn't work for OpenCV. – yole Mar 03 '15 at 20:11
-
possible duplicate of [What IDE to use for Python?](http://stackoverflow.com/questions/81584/what-ide-to-use-for-python) – Henry Keiter Mar 03 '15 at 20:35
1 Answers
1
Generally every IDE for Python should work with OpenCV (it's just a wrapper for C++ lib, not something more complicated). Here you have a big list with comparision of features. Right now i'm using Sublime Text, because i'm working on quite small project and i don't need "big" IDE like Eclipse.
Important note about Sublime - if you often need to test something in console, consider installing SublimeREPL plugin - it allows you to run Python (or almost any other language or shell) in Sublime tab, so you can use it with all editor features (e.g. code completition)