mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2025-12-30 04:52:29 +00:00
Change log: Moving to C++17. This means that the code can only be build using C++17 compilers (e.g. g++ >8 and Visual Studio 2017, clang > 5), fixing related bugs - (#698, #629, #641) Removing an explicit dependency on boost (all the filesystem operations are performed using std::filesystem or boost::filesysteme). If boost is available it will used boost:filesystem, otherwise std::filesystem (this requires C++17) Visual Studio 2017 is now the main version for Visual Studio builds, VS 2015 is no longer supported Updating OpenCV to 4.1 version (#511) Fixing a bug with output images when using GUI (#694) Updating RAWImage - #609, so it can be initialized from System.Drawing.Bitmap directly Fixing overlap detection for multi face tracking (#693)
35 lines
1.2 KiB
YAML
35 lines
1.2 KiB
YAML
version: 1.0.{build}
|
|
image: Visual Studio 2017
|
|
branches:
|
|
only:
|
|
- develop
|
|
- feature/opencv4
|
|
- master
|
|
- feature/boost_removal
|
|
max_jobs: 4
|
|
configuration:
|
|
- Release
|
|
- Debug
|
|
platform:
|
|
- x64
|
|
- Win32
|
|
# scripts that run after cloning repository
|
|
install:
|
|
- ps: '& ".\download_libraries.ps1"'
|
|
- ps: '& ".\download_models.ps1"'
|
|
|
|
build:
|
|
project: OpenFace.sln
|
|
verbosity: minimal
|
|
test_script:
|
|
# C++
|
|
- cmd: dir
|
|
- cmd: if exist x64 (cd x64)
|
|
- cmd: if exist Debug (cd Debug)
|
|
- cmd: if exist Release (cd Release)
|
|
- cmd: dir
|
|
- cmd: if exist "../samples" (FaceLandmarkImg.exe -inroot ../samples -f sample1.jpg -out_dir out_data -q) else (FaceLandmarkImg.exe -inroot ../../samples -f sample1.jpg -out_dir out_data -q)
|
|
- cmd: if exist "../samples" (FaceLandmarkVidMulti.exe -fdir ../samples/image_sequence -q -mloc model/main_clnf_general.txt) else (FaceLandmarkVidMulti.exe -fdir ../../samples/image_sequence -q -mloc model/main_clnf_general.txt)
|
|
- cmd: if exist "../samples" (FeatureExtraction.exe -fdir "../samples/image_sequence" -q) else (FeatureExtraction.exe -fdir "../../samples/image_sequence" -q)
|
|
- cmd: if exist "../samples" (FaceLandmarkVid.exe -f "../samples/default.wmv" -q) else (FaceLandmarkVid.exe -f "../../samples/default.wmv" -q)
|