You know what makes for a (not so) fun weekend?
Reconfiguring and reinstalling OSX on your MacBook Pro. Apparently, the 13in MacBook Pro that I use when I’m traveling decided to shit the bed.
No worries though, I use Carbon Copy Cloner and Backblaze, so no data was lost. And to be honest, I was considering rebuilding the development environment on my travel system for awhile now. While I use my 13in MacBook Pro while I travel, I have a second MacBook Pro that I use on a daily basis as my main development system. And over the past two years the development environments between the two have become horribly out of sync and almost unusable.
As I sat down Sunday night, looking out at the anvil-shaped thunderclouds rolling in across the Long Island sound, I took a second and sipped some tea (spiked with some peppermint schnapps; it is the weekend, of course) from my mug and watched as the lighting danced haphazardly across the sky.
There is a certain calming serenity that comes with watching a thunderstorm roll in — and hopefully the rest of this guide gives you some calming serenity yourself when you go to setup PyCharm to play nice with OpenCV and virtual environments.
PyCharm, virtual environments, and OpenCV
The rest of this blog post will assume that you have already installed OpenCV and the appropriate Python bindings on your system. I’m also going to assume that you have virtualenv and virtualenvwrapper installed as well.
These installation instructions and associated screenshots were gathered on my OSX machine, but these instructions will work on both Linux and Windows (for Windows you’ll have to change the various paths to files of course, but that’s okay).
I’ll also be setting up my system with Python 2.7 and OpenCV 2.4.X; however, you can use the same instructions to setup your environment with Python 3 and OpenCV as well, you’ll just need to change the paths to the Python and OpenCV files.
Step 1: Create your virtual environment
The first thing we are going to do is setup our virtual environment. Open up a terminal and create your virtual environment. For this example, let’s name the virtual environment
pyimagesearch:
$ mkvirtualenv pyimagesearch
Now that our virtual environment has been setup, let’s install NumPy, Scipy, matplotlib, scikit-learn, and scikit-image which are all commonly used for computer vision development:
$ pip install numpy $ pip install scipy $ pip install matplotlib $ pip install scikit-learn $ pip install -U scikit-image
Step 2: Sym-link your cv2.so and cv.py files
As I’m sure you already know, OpenCV is not pip-installable. You’ll need to manually sym-link your
cv2.soand
cv.pyfiles into the site-packages directory of the
pyimagesearchvirtual environment.
On my system, OpenCV is installed in
/usr/local/lib/python2.7/site-packages/
This may not be the case for your system, so be sure to find your OpenCV install path and make note of it — you’ll need this path for the following step.
Now that we have the path to our OpenCV install, we can sym-link it into our virtual environment:
$ cd ~/.virtualenvs/pyimagesearch/lib/python2.7/site-packages/ $ ln -s /usr/local/lib/python2.7/site-packages/cv.py cv.py $ ln -s /usr/local/lib/python2.7/site-packages/cv2.so cv2.so
Step 3: Configure PyCharm
If you are not already using the PyCharm IDE for editing your code, it’s definitely worth a look. They have both a free community edition and a paid version with a bunch of nice bells and whistles.
It’s hard to believe, but for years I turned the other way at PyCharm and dismissed it.
You see, back in college I was forced to use Eclipse for Java development — and since I was never fond of Java or Eclipse, I (ignorantly) turned my back on any IDE that reminded me of it. Boy, that was a huge mistake.
About six months ago I decided to give PyCharm a real chance and not let my previous experiences bias my opinion. In short, it was one of the best choices I’ve ever made in terms of development environments.
Anyway, now that our virtual environment is all setup let’s connect it to a PyCharm project.
Open up PyCharm and create a new “Pure Python” project:
From here we need to set the location of our Python Interpreter. In most cases this location will point to your system install of Python. However, we do not want to use the system Python — we want to use the Python that is part of our
pyimagesearchvirtual environment, so click the gear icon and select “Add Local”:
Figure 2: Specifying that we want to use a local Python environment rather than the default system Python.
Next up, we need to specify the path to the Python binary inside our virtual environment.
In my case, the
pyimagesearchvirtual environment is located in
~/.virtualenvs/pyimagesearch/with the actual Python binary in
~/.virtualenvs/pyimagesearch/bin.
In any case, be sure to navigate to the Python binary for your virtual environment, followed by clicking “Choose”:
After you have selected your virtual environment, PyCharm will spend a few seconds updating the project skeletons:
Once the skeletons are done updating, click the “Create” button to launch your project.
And that’s all there is to it!
Done!
After this, you’re all set. PyCharm will use your
pyimagesearchvirtual environment and will recognize the OpenCV library.
And if you ever want to update the virtual environment for a project you are using, just to the PyCharm Preferences panel, select the Project tab on the left sidebar, followed by “Project Interpreter”:
Summary
In this blog post I showed you how to utilize virtual environments and OpenCV inside my favorite IDE, PyCharm.
I hope you find this post useful when you go to setup your next Python + OpenCV project!
And if you aren’t using PyCharm yet, it’s definitely worth a look.
The post The perfect computer vision environment: PyCharm, OpenCV, and Python virtual environments appeared first on PyImageSearch.
from PyImageSearch http://ift.tt/1LgIJMQ
via IFTTT
No comments:
Post a Comment