Library not loaded: libcrypto.1.0.0.dylib issue in mac

You might have come across this error while dealing with the openssl module. Inorder to solve this issue follow the following steps Step 1: Install openssl using brew brew install openssl Step 2: Copy copy libssl.1.0.0.dylib and libcrypto.1.0.0.dylib cd /usr/local/Cellar/openssl/1.0.1f/lib sudo cp libssl.1.0.0.dylib libcrypto.1.0.0.dylib /usr/lib/ Note the bold folder name. There will be change in that … Read more

Install OpenCV for python in OSX Mavericks 10.9

#Assuming that you have installed Xcode, Command Line Tools, CMake, and Python #Install ScipySuperpack ~$ curl https://raw.github.com/fonnesbeck/ScipySuperpack/master/install_superpack.sh > install_superpack.sh ~$ sh install_superpack.sh #Download OpenCV 2.4.2 #Extract OpenCV-2.4.2.tar.bz2 #Open Terminal at the extracted directory #At OpenCV-2.4.2 directory: ~$ echo “#define GTEST_USE_OWN_TR1_TUPLE 1” | cat > temp1 ~$ cat modules/ts/include/opencv2/ts/ts_gtest.h > temp2 ~$ cat temp1 temp2 > … Read more