Ask Your Question

srinivas7's profile - activity

2017-03-20 12:03:46 -0600 commented question installation error

I am having similar issue. Were you able to resolve issue? If so, can you please share the solution.. Thanks

2015-10-07 15:06:04 -0600 received badge  Student (source)
2015-01-19 12:57:49 -0600 asked a question Opencv Installation Errors in Mac OSX

Hi, I'm tired of using methods to install opencv in my Mac OS X My laptop runs OS X Yosemite X64.

First i tried to install using port which installed opencv with no problem but later when i compile programs i got error no symbols found for x64 architecture.

Then i tried to google problem did whatever solutions i got, but couldn't solve problem, Then uninstalled it.

I found that brew can does the same thing, so again i installed opencv using brew, no problem installing it. Later i received same error again google search didn't help much.

Now i want to install it by myself. I've downloaded opencv 2.4.10 using link:[http://sourceforge.net/projects/opencvlibrary/files] extracted and used following commands [source: stackoverflow]

mkdir build

cd build

cmake -D WITH_TBB=OFF -D BUILD_NEW_PYTHON_SUPPORT=OFF -D BUILD_FAT_JAVA_LIB=OFF -D BUILD_TBB=OFF -D BUILD_EXAMPLES=ON -D CMAKE_CXX_COMPILER=g++ CMAKE_CC_COMPILER=gcc -D CMAKE_OSX_ARCHITECTURES=x86_64 -D BUILD_opencv_java=OFF -G "Unix Makefiles" ..

make -j8 make gives me following error:

In file included from /Developer/NVIDIA/CUDA-6.5/include/cuda_runtime.h:59:0, from <command-line>:0: /Developer/NVIDIA/CUDA-6.5/include/host_config.h:82:2: error: #error -- unsupported GNU version! gcc 4.9 and up are not supported! #error -- unsupported GNU version! gcc 4.9 and up are not supported! ^ CMake Error at cuda_compile_generated_matrix_operations.cu.o.cmake:206 (message): Error generating /Users/user/Downloads/opencv-2.4.10/build/modules/core/CMakeFiles/cuda_compile.dir/__/dynamicuda/src/cuda/./cuda_compile_generated_matrix_operations.cu.o

make[2]: * [modules/core/CMakeFiles/cuda_compile.dir/__/dynamicuda/src/cuda/cuda_compile_generated_matrix_operations.cu.o] Error 1 make[1]: [modules/core/CMakeFiles/opencv_core.dir/all] Error 2 make: ** [all] Error 2

I tried sudo ln -s /usr/bin/gcc-4.4 /usr/local/cuda/bin/gcc But it doesn't work

Please help me

2014-03-18 06:46:21 -0600 received badge  Supporter (source)
2013-08-05 22:29:18 -0600 commented question ./OpenCV-CLIntro: error while loading shared libraries: libopencv_ocl.so.2.4: cannot open shared object file: No such file or directory

Hey i Solved the Error, 2.4.3 doesn't contain libopencv_ocl library. As i installed 2.4.6.1 version Everything works fine, libopencv_ocl is available in latest version

2013-08-05 04:05:19 -0600 commented question ./OpenCV-CLIntro: error while loading shared libraries: libopencv_ocl.so.2.4: cannot open shared object file: No such file or directory

Can anyone tell me where can i find libopencv_ocl.so.2 library

2013-08-05 00:01:36 -0600 asked a question ./OpenCV-CLIntro: error while loading shared libraries: libopencv_ocl.so.2.4: cannot open shared object file: No such file or directory

Hi I've little bit idea on OpenCV as i've worked on it for sometime. Now i've to learn OpenCL for which i installed AMDAPP.

So i Want to work on OpenCV Module for OpenCL, So Tried some Examples from samples in AMDAPP developer suite. but i got this error

./OpenCV-CLIntro: error while loading shared libraries: libopencv_ocl.so.2.4: cannot open shared object file: No such file or directory

and I've installed OpenCV 2.4.3 in my ubuntu 11.10.

Thanks.