Warning, /unmaintained/libkface/README is written in an unsupported language. File is not indexed.
0001 LibKFace Library interface for KDE 0002 0003 -- AUTHORS ------------------------------------------------------------ 0004 0005 See AUTHORS file for details. 0006 0007 -- ABOUT -------------------------------------------------------------- 0008 0009 Libkface is a Qt/C++ library to perform face detection and recognition over pictures 0010 0011 The library documentation is available on header files. 0012 0013 -- DEPENDENCIES ------------------------------------------------------- 0014 0015 CMake >= 2.8.12 http://www.cmake.org 0016 ECM >= 1.1.0 https://projects.kde.org/projects/kdesupport/extra-cmake-modules 0017 libqt >= 5.2.0 http://qt-project.org 0018 libopencv >= 2.4.9 http://opencv.willowgarage.com/wiki (with opencv 'haarcascades' data files) 0019 0020 CMake compilation options to custom libkface: 0021 0022 Use CMake "-DENABLE_OPENCV3=on" flag to compile libkface source code using OpenCV3 instead OpenCV2 (disabled by default). 0023 OpenCV3 support needs extra contrib modules package, especially 'face' and 'legacy' components. 0024 0025 -- INSTALL ------------------------------------------------------------ 0026 0027 Usual CMake options: 0028 0029 -DCMAKE_INSTALL_PREFIX : decide where the program will be install on your computer. 0030 -DCMAKE_BUILD_TYPE : decide which type of build you want. You can chose between "debug", "profile", "relwithdebinfo" and "release". The default is "relwithdebinfo" (-O2 -g). 0031 0032 Note: To know KDE install path on your computer, use 'kf5-config --prefix' command line like this (with debug object enabled): 0033 0034 "cmake . -DCMAKE_BUILD_TYPE=debug -DCMAKE_INSTALL_PREFIX=`kf5-config --prefix`"