We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi all,
I am building the SDK with OpenCV4 on Ubuntu 20.04. I have got the build to work but due to this configuration in Options.cmake:
if(WITH_API) include(${CMAKE_CURRENT_LIST_DIR}/DetectOpenCV.cmake) if(WITH_OPENCV4) set(WITH_CAM_MODELS OFF) endif()
The option of WITH_CAM_MODELS is OFF. I am getting this linker error when building the sample due to this:
[ 4%] Linking CXX executable ../_output/bin/record /usr/bin/ld: /usr/local/lib/libmynteye.so.2.5.0: undefined reference to mynteye::DepthProcessor::DepthProcessor(std::shared_ptr<mynteye::CameraROSMsgInfoPair>, std::shared_ptr<int>, std::shared_ptr<int>, int)' /usr/bin/ld: /usr/local/lib/libmynteye.so.2.5.0: undefined reference to mynteye::PointsProcessor::PointsProcessor(std::shared_ptrmynteye::CameraROSMsgInfoPair, int)' collect2: error: ld returned 1 exit status
mynteye::DepthProcessor::DepthProcessor(std::shared_ptr<mynteye::CameraROSMsgInfoPair>, std::shared_ptr<int>, std::shared_ptr<int>, int)' /usr/bin/ld: /usr/local/lib/libmynteye.so.2.5.0: undefined reference to
Is the only solution to use lower version of OpenCV library ? Could the SDK be updated in anyway ?
Thanks
The text was updated successfully, but these errors were encountered:
maybe i think ubuntu18 is key of the problem
Sorry, something went wrong.
No branches or pull requests
Hi all,
I am building the SDK with OpenCV4 on Ubuntu 20.04. I have got the build to work but due to this configuration in Options.cmake:
if(WITH_API)
include(${CMAKE_CURRENT_LIST_DIR}/DetectOpenCV.cmake)
if(WITH_OPENCV4)
set(WITH_CAM_MODELS OFF)
endif()
The option of WITH_CAM_MODELS is OFF. I am getting this linker error when building the sample due to this:
[ 4%] Linking CXX executable ../_output/bin/record
/usr/bin/ld: /usr/local/lib/libmynteye.so.2.5.0: undefined reference to
mynteye::DepthProcessor::DepthProcessor(std::shared_ptr<mynteye::CameraROSMsgInfoPair>, std::shared_ptr<int>, std::shared_ptr<int>, int)' /usr/bin/ld: /usr/local/lib/libmynteye.so.2.5.0: undefined reference to
mynteye::PointsProcessor::PointsProcessor(std::shared_ptrmynteye::CameraROSMsgInfoPair, int)'collect2: error: ld returned 1 exit status
Is the only solution to use lower version of OpenCV library ? Could the SDK be updated in anyway ?
Thanks
The text was updated successfully, but these errors were encountered: