How to compile libopencv_phase_unwrapping.so

asked 2017-07-21 11:21:49 -0600

nicf82 gravatar image

Hi

How do i build libopencv_phase_unwrapping.so when i cmake the source?

cmake -D CMAKE_BUILD_TYPE=RELEASE \
    -D CMAKE_INSTALL_PREFIX=/usr/local \
    -D WITH_TBB=On \
    -D WITH_V4L=On \
    -D WITH_VTK=On \
    -D WITH_QT=On \
    -D INSTALL_C_EXAMPLES=OFF \
    -D INSTALL_PYTHON_EXAMPLES=ON \
    -D OPENCV_EXTRA_MODULES_PATH=/root/opencv_contrib/modules \
    -D OPENCV_EXTRA_MODULES=/root/opencv_contrib/modules \
    -D BUILD_EXAMPLES=ON .. && \

is what i currently have and it does not appear in /usr/local/lib

edit retag flag offensive close merge delete

Comments

could you please add the cmake output to your question ? it may have answers.

berak gravatar imageberak ( 2017-07-21 11:23:49 -0600 )edit

then, cmake only builds makefiles.

make will build the actual libs, make install will copy them to your install folder

berak gravatar imageberak ( 2017-07-23 00:54:52 -0600 )edit