移动端的qt版本人脸流程
编辑 | blame | 历史 | 原始文档
cmake_minimum_required(VERSION 3.5)

project(face LANGUAGES CXX)

set(CMAKE_INCLUDE_CURRENT_DIR ON)

set(CMAKE_AUTOUIC ON)
set(CMAKE_AUTOMOC ON)
set(CMAKE_AUTORCC ON)

add_compile_options(-fPIC)
set(CMAKE_CXX_STANDARD 11)
SET(CMAKE_BUILD_TYPE DEBUG)
set(CMAKE_CXX_STANDARD_REQUIRED ON)

# QtCreator supports the following variables for Android, which are identical to qmake Android variables.
# Check http://doc.qt.io/qt-5/deployment-android.html for more information.
# They need to be set before the find_package(Qt5 ...) call.

#if(ANDROID)
#    set(ANDROID_PACKAGE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}/android")
#    if (ANDROID_ABI STREQUAL "armeabi-v7a")
#        set(ANDROID_EXTRA_LIBS
#            ${CMAKE_CURRENT_SOURCE_DIR}/path/to/libcrypto.so
#            ${CMAKE_CURRENT_SOURCE_DIR}/path/to/libssl.so)
#    endif()
#endif()

find_package(Qt5 REQUIRED Widgets Core Gui)

#if(ANDROID)
#  add_library(test3 SHARED
#    main.cpp
#    widget.cpp
#    widget.h
#    widget.ui
#  )
#else()
#  add_executable(test3
#    main.cpp
#    mainwidget.cpp
#    mainwidget.h
#  )
#endif()
SET(LIBS
    pthread
    THFaceTracking
    THFeature
#    THFaceProperty
        opencv_world
    )

set(THIRDLIBPATH ./faceLib/)

include_directories(
    ${THIRDLIBPATH}/include
    ${THIRDLIBPATH}/opencv/include
    ${QT_USE_FILE}
)

link_directories(
    ${THIRDLIBPATH}/opencv/lib
    ${THIRDLIBPATH}/lib
)

add_executable(face
    main.cpp
    mainwidget.cpp
    mainwidget.h
    myLabel.cpp
    myLabel.h
#    realtime.cpp
#    realtime.h
#    realtime.ui
    faceLib/detect.cpp
    faceLib/detect.h
    faceLib/extract.cpp
    faceLib/extract.h
    faceLib/common.h
    faceLib/common.cpp

    img.qrc
   )
target_link_libraries(face
    Qt5::Widgets
    Qt5::Core
    Qt5::Gui
    ${LIBS}
)