Quick note to self on getting OpenCV up on Linux with EPD.

When you run cmake (ccmake for the curses gui), toggle the advanced options. The python includes, binary, and lib directories are options that only show as advanced options. Change these to reflect your location for EPD. After running make, the cv.so library that python gets its functions from gets installed by default to /usr/local/lib/python2.7/site-packages/cv.so. Copy it instead to EPD_INSTALL_DIR/lib/python2.7/site-packages. You should be good to go, now.

Also, one other problem:
Ubuntu 11.04 has pulled the old switcheroo on library locations. If you've installed all the dev versions of the necessary libraries (libjpeg, libpng, libtiff, libzip were my problem libraries), you also need to create symlinks from their new locations to the locations that OpenCV's make/CMake is expecting to find them:

ln -s /usr/lib/x86_64-linux-gnu/libjpeg.so /usr/lib/libjpeg.so
ln -s /usr/lib/x86_64-linux-gnu/libpng.so /usr/lib/libpng.so
ln -s /usr/lib/x86_64-linux-gnu/libtiff.so.4 /usr/lib/libtiff.so
ln -s /usr/lib/x86_64-linux-gnu/libz.so /usr/lib/libz.so

This hint courtesy of:
http://www.nigeldunn.com/2011/05/14/ubuntu-11-04-libjpeg-so-libpng-so-php-installation-issues/