Skip to content
New issue

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

where libraries starter and garfield are? #2

Open
sergorl opened this issue Feb 10, 2020 · 2 comments
Open

where libraries starter and garfield are? #2

sergorl opened this issue Feb 10, 2020 · 2 comments

Comments

@sergorl
Copy link

sergorl commented Feb 10, 2020

Where I can find these libraries:

BAZAR_INC = `pkg-config starter --cflags` `pkg-config garfeild --cflags`
BIZAR_INC = `pkg-config garfield --cflags`

??? Google doesn't know such libraries...

@adynathos
Copy link
Collaborator

Hello,
I do not see these libraries referenced anywhere here, it should be fine to ignore them.
https://github.com/cvlab-epfl/EPnP/blob/master/cpp/epnp.h
https://github.com/cvlab-epfl/EPnP/blob/master/cpp/epnp.cpp

Another problem however is that this code uses an old OpenCV API <cv.h> which has long been removed.

@themightyoarfish
Copy link

CMake script for this repo:

cmake_minimum_required(VERSION 3.15.0)
project(autocrane-core)
set(CMAKE_CXX_STANDARD 11)

find_package(OpenCV 4.0 REQUIRED)
message(STATUS "OpenCV headers at ${OpenCV_INCLUDE_DIRS}")
message(STATUS "OpenCV libraries: ${OpenCV_LIBS}")

include_directories(SYSTEM ${OpenCV_INCLUDE_DIRS})
add_executable(epnp epnp.cpp main.cpp)
target_link_libraries(epnp ${OpenCV_LIBS})

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants