From 818ec6463efbf7e5d907e8a39cb672e8384e0fa9 Mon Sep 17 00:00:00 2001 From: Tadas Baltrusaitis Date: Sat, 30 Jul 2016 16:17:45 -0400 Subject: [PATCH] Adding appveyor testing. --- README.md | 6 ++++++ appveyor.yml | 13 ++++++++++++- 2 files changed, 18 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 3ff88d9..ad9105e 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,10 @@ # OpenFace: an open source facial behavior analysis toolkit +Travis +[![Build Status](https://travis-ci.org/TadasBaltrusaitis/OpenFace.svg?branch=master)](https://travis-ci.org/TadasBaltrusaitis/OpenFace) +AppVeyor +[![Build status](https://ci.appveyor.com/api/projects/status/8msiklxfbhlnsmxp/branch/master?svg=true)](https://ci.appveyor.com/project/TadasBaltrusaitis/openface/branch/master) + Over the past few years, there has been an increased interest in automatic facial behavior analysis and understanding. We present OpenFace – an open source tool intended for computer vision and machine learning researchers, affective computing community and people interested in building interactive applications based on facial behavior analysis. OpenFace is the first open source tool capable of facial landmark detection, head pose estimation, facial action unit recognition, and eye-gaze estimation. The computer vision algorithms which represent the core of OpenFace demonstrate state-of-the-art results in all of the above mentioned tasks. Furthermore, our tool is capable of real-time performance and is able to run from a simple webcam without any specialist hardware. The code was written mainly by Tadas Baltrusaitis during his time at the Language Technologies Institute at the Carnegie Mellon University; Computer Laboratory, University of Cambridge; and Institute for Creative Technologies, University of Southern California. @@ -73,3 +78,4 @@ I did my best to make sure that the code runs out of the box but there are alway Copyright can be found in the Copyright.txt You have to respect boost, TBB, dlib, and OpenCV licenses. + diff --git a/appveyor.yml b/appveyor.yml index 059f976..a78514b 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -12,4 +12,15 @@ platform: - Win32 build: project: OpenFace.sln - verbosity: minimal \ No newline at end of file + 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: if exist "../videos" (FaceLandmarkImg.exe -fdir "../videos/" -ofdir "./demo_img/" -oidir "./demo_img/" -wild -q) else (FaceLandmarkImg.exe -fdir "../../videos/" -ofdir "./demo_img/" -oidir "./demo_img/" -wild -q) + - cmd: if exist "../videos" (FaceLandmarkVidMulti.exe -f ../videos/multi_face.avi -q) else (FaceLandmarkVidMulti.exe -f ../../videos/multi_face.avi -q) + - cmd: if exist "../videos" (FeatureExtraction.exe -rigid -verbose -f "../videos/1815_01_008_tony_blair.avi" -of "output_features/1815_01_008_tony_blair.txt" -simalign output_features/aligned -q) else (FeatureExtraction.exe -rigid -verbose -f "../../videos/1815_01_008_tony_blair.avi" -of "output_features/1815_01_008_tony_blair.txt" -simalign output_features/aligned -q) + - cmd: if exist "../videos" (FaceLandmarkVid.exe -f "../videos/1815_01_008_tony_blair.avi" -q) else (FaceLandmarkVid.exe -f "../../videos/1815_01_008_tony_blair.avi" -q)