/////////////////////////////////////////////////////////////////////////////// // Copyright (C) 2017, Carnegie Mellon University and University of Cambridge, // all rights reserved. // // ACADEMIC OR NON-PROFIT ORGANIZATION NONCOMMERCIAL RESEARCH USE ONLY // // BY USING OR DOWNLOADING THE SOFTWARE, YOU ARE AGREEING TO THE TERMS OF THIS LICENSE AGREEMENT. // IF YOU DO NOT AGREE WITH THESE TERMS, YOU MAY NOT USE OR DOWNLOAD THE SOFTWARE. // // License can be found in OpenFace-license.txt // // Precompiled headers stuff #ifndef __STDAFX_UT_h_ #define __STDAFX_UT_h_ // OpenCV includes #include #include #include // For FHOG visualisation #include #include // C++ standard stuff #include #include #include #include #include #include #include #include #include #include // For sorting #include // For threading and timing #include #include // Filesystem stuff // It can either be in std filesystem (C++17), or in experimental/filesystem (partial C++17 support) or in boost #if __has_include() #include namespace fs = std::filesystem; #elif __has_include() #include namespace fs = std::filesystem; #else #include #include namespace fs = boost::filesystem; #endif #endif