Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

ippverion.h, ipp.h not found while building using 'make'

Hi, I am trying to compile a piece of code taken from github, that requires opencv header files. During compilation I got stuck. In the terminal I find fatal error: ippversion.h: No such file or directory. The same happens foripp.h`. Following relevant part from my CMake Lists,txt.

 include_directories (include ${EIGEN_INCLUDE_DIRS} ${PCL_INCLUDE_DIRS} ${OCTOMAP_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS})

    Set(OpenCV_DIR /home/anindya/opencv/build)
find_package(OpenCV REQUIRED COMPONENTS core)
include_directories (include ${OpenCV_INCLUDE_DIRS})

    add_library(${PROJECT_NAME}
include/precomp.hpp)

The precomp.hpp contains private.hpp. ippversion.h and ipp.h are included with in private.hpp. I do not understand why the compiler cannot find these files where as some other files within a shallow directory in opencv is found. Expecting some help.

ippverion.h, ipp.h not found while building using 'make'

Hi, I am trying to compile a piece of code taken from github, that requires opencv header files. During compilation I got stuck. In the terminal I find fatal error: ippversion.h: No such file or directory. The same happens foripp.h`. Following relevant part from my CMake Lists,txt.

 include_directories (include ${EIGEN_INCLUDE_DIRS} ${PCL_INCLUDE_DIRS} ${OCTOMAP_INCLUDE_DIRS} ${OpenCV_INCLUDE_DIRS})

    Set(OpenCV_DIR /home/anindya/opencv/build)
find_package(OpenCV REQUIRED COMPONENTS core)
include_directories (include ${OpenCV_INCLUDE_DIRS})

    add_library(${PROJECT_NAME}
include/precomp.hpp)

The precomp.hpp contains private.hpp. ippversion.h and ipp.h are included with in private.hpp. I do not understand why the compiler cannot find these files where as some other files within a shallow directory in opencv is found. Expecting some help.

ippverion.h, ipp.h not found while building using 'make'

Hi, I am trying to compile a piece of code taken from github, that requires opencv header files. During compilation I got stuck. In the terminal I find fatal error: ippversion.h: No such file or directory. directory. The same happens forfor ipp.hipp.h`. . Following relevant part from my CMake Lists,txt.

    Set(OpenCV_DIR /home/anindya/opencv/build)
find_package(OpenCV REQUIRED COMPONENTS core)
include_directories (include ${OpenCV_INCLUDE_DIRS})

    add_library(${PROJECT_NAME}
include/precomp.hpp)

The precomp.hpp contains private.hpp. ippversion.h and ipp.h are included with in private.hpp. I do not understand why the compiler cannot find these files where as some other files within a shallow directory in opencv is found. Expecting some help.

ippverion.h, ipp.h not found while building using 'make'

Hi, I am trying to compile a piece of code taken from github, that requires opencv header files. During compilation I got stuck. In the terminal I find fatal error: ippversion.h: No such file or directory. The same happens for ipp.h. Following relevant part from my CMake Lists,txt.

    Set(OpenCV_DIR /home/anindya/opencv/build)
find_package(OpenCV REQUIRED COMPONENTS core)
include_directories (include ${OpenCV_INCLUDE_DIRS})

    add_library(${PROJECT_NAME}
include/precomp.hpp)
target_link_libraries(${OpenCV_LIBRARIES})

The precomp.hpp contains private.hpp. ippversion.h and ipp.h are included with in private.hpp. I do not understand why the compiler cannot find these files where as some other files within a shallow directory in opencv is found. Expecting some help.