Update api & link libs

This commit is contained in:
John Zhao 2018-04-26 09:22:29 +08:00
parent cd28fa58d3
commit 1fd44f7f0c
5 changed files with 52 additions and 3 deletions

View File

@ -34,6 +34,17 @@ LIST(APPEND CMAKE_PREFIX_PATH third_party/glog/_build)
find_package(glog REQUIRED)
message(STATUS "Found glog: ${glog_VERSION}")
if(WITH_API)
find_package(OpenCV REQUIRED)
message(STATUS "Found OpenCV: ${OpenCV_VERSION}")
if(OpenCV_VERSION VERSION_LESS 3.0)
add_definitions(-DUSE_OPENCV2)
else()
add_definitions(-DUSE_OPENCV3)
endif()
endif()
LIST(APPEND CMAKE_MODULE_PATH cmake)
include(CMakePackageConfigHelpers)
@ -136,6 +147,9 @@ set(MYNTEYE_LINKLIBS
glog::glog
${UVC_LIB}
)
if(WITH_API)
list(APPEND MYNTEYE_LINKLIBS ${OpenCV_LIBS})
endif()
#message(STATUS "MYNTEYE_LINKLIBS: ${MYNTEYE_LINKLIBS}")
add_library(${MYNTEYE_NAME} SHARED ${MYNTEYE_SRCS})

View File

@ -21,6 +21,17 @@ make samples
## Run
Camera with api layer,
```bash
./samples/_output/bin/api/camera_a
# Windows
.\samples\_output\bin\api\camera_a.bat
```
Camera with device layer,
```bash
./samples/_output/bin/device/camera_d

View File

@ -7,5 +7,7 @@ MYNTEYE_USE_NAMESPACE
int main(int argc, char *argv[]) {
glog_init _(argc, argv);
auto &&api = API::Create();
return 0;
}

View File

@ -2,9 +2,13 @@
#include <glog/logging.h>
#include "mynteye/utils.h"
#include "device/device.h"
MYNTEYE_BEGIN_NAMESPACE
API::API() {
API::API(std::shared_ptr<Device> device) : device_(device) {
VLOG(2) << __func__;
}
@ -12,4 +16,12 @@ API::~API() {
VLOG(2) << __func__;
}
std::shared_ptr<API> API::Create() {
return Create(device::select());
}
std::shared_ptr<API> API::Create(std::shared_ptr<Device> device) {
return std::make_shared<API>(device);
}
MYNTEYE_END_NAMESPACE

View File

@ -2,14 +2,24 @@
#define MYNTEYE_API_H_
#pragma once
#include <memory>
#include "mynteye/mynteye.h"
MYNTEYE_BEGIN_NAMESPACE
class Device;
class MYNTEYE_API API {
public:
API();
~API();
explicit API(std::shared_ptr<Device> device);
/*virtual*/ ~API();
static std::shared_ptr<API> Create();
static std::shared_ptr<API> Create(std::shared_ptr<Device> device);
private:
std::shared_ptr<Device> device_;
};
MYNTEYE_END_NAMESPACE