Added CameraK4A driver (only MKV playback supported yet). Fixed build with realsense2 support on Windows. Preferences: added imu filtering parameters to ini file.

This commit is contained in:
matlabbe
2019-07-09 20:48:09 -04:00
parent 63be7c85fc
commit 3c7719f6d8
22 changed files with 1426 additions and 508 deletions

View File

@@ -21,6 +21,7 @@ SET(SRC_FILES
camera/CameraFreenect2.cpp
camera/CameraImages.cpp
camera/CameraK4W2.cpp
camera/CameraK4A.cpp
camera/CameraOpenni.cpp
camera/CameraOpenNI2.cpp
camera/CameraOpenNICV.cpp
@@ -218,6 +219,17 @@ IF(KinectSDK2_FOUND)
)
ENDIF(KinectSDK2_FOUND)
IF(K4A_FOUND)
SET(INCLUDE_DIRS
${INCLUDE_DIRS}
${K4A_INCLUDE_DIRS}
)
SET(LIBRARIES
${LIBRARIES}
${K4A_LIBRARIES}
)
ENDIF(K4A_FOUND)
IF(RealSense_FOUND)
SET(INCLUDE_DIRS
${INCLUDE_DIRS}