libmv-capi-sys 0.1.1

Unsafe FFI bindings for libmv, Blender's motion-tracking library
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FIND_PACKAGE(Qt4 REQUIRED)
#FIND_PACKAGE(OpenCV REQUIRED)
INCLUDE(${QT_USE_FILE})
SET(SOURCES main.cc)
QT4_ADD_RESOURCES(SOURCES calibration.qrc)
QT4_WRAP_CPP(SOURCES main.h)
ADD_EXECUTABLE(qt-calibration ${SOURCES})
TARGET_LINK_LIBRARIES(qt-calibration
                      ${QT_LIBRARIES}
                      ${FFMPEG_LIBRARIES}
                      opencv_highgui
                      opencv_imgproc
                      opencv_core
                      opencv_calib3d)
LIBMV_INSTALL_EXE(qt-calibration)