mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2025-12-30 13:02:30 +00:00
* Removing code duplication and getting rid of some C++ warnings due to float/double and signed/unsigned mixing. * Fixing the screenshot functionality. * Feature/code cleanup (#573) * Header guard cleanup (making sure naming is compliant with C++ standards and consistent). * Removing un-needed nullptr checks. * Removing SSE warnings for x64 builds (as SSE is enabled by default no need for a flag) * Reverting Mat deletion * Adding Visual Studio 2017 solution * Feature/code cleanup (#580) - name of revision - better scripts for model download (not only in Dropbox also OneDrive) * Update the OpenCV constants to the corresponding ones in cpp namespace. (#578) Updating OpenCV macros. * Slight change in packaging code (use a shared download script). * Removing TBB dependency (#590) Removing a TBB dependence for code parallelization (done through OpenCV's parralel_for_ * Updating OpenBLAS (#594) Updating the 64 bit OpenBLAS version for Windows to 0.3.3 (50% perf improvement on certain machines) * Ability to specify output image formats and removing unused quiet parameter. * Update Windows download script (#608) (#610) - Automatically choose correct path to the model files so that it works for both, source code compilation and binary use - Use absolute paths in the system exists methods * Updating version. * Packaging code update.
make QUIET_MAKE=1 TARGET=NEHALEM DYNAMIC_ARCH=1 HOSTCC=gcc NUM_THREADS=64 BINARY=64 CC=x86_64-w64-mingw32-gcc FC=x86_64-w64-mingw32-gfortran [INFO] : TIMER value: INT_ETIME (given by make.inc) [INFO] : TIMER value: INT_ETIME (given by make.inc) touch libopenblasp-r0.2.19.a make -s -j 16 -C test all make -s -j 16 -C utest all make -s -j 16 -C ctest all OpenBLAS build complete. (BLAS CBLAS LAPACK LAPACKE) OS ... WINNT Architecture ... x86_64 BINARY ... 64bit C compiler ... GCC (command line : x86_64-w64-mingw32-gcc) Fortran compiler ... GFORTRAN (command line : x86_64-w64-mingw32-gfortran) Library Name ... libopenblasp-r0.2.19.a (Multi threaded; Max num-threads is 64) To install the library, you can run "make PREFIX=/path/to/your/installation install". ├── bin │ └── libopenblas.dll The shared library for Visual Studio and GCC. ├── include │ ├── cblas.h │ ├── f77blas.h │ ├── lapacke_config.h │ ├── lapacke.h │ ├── lapacke_mangling.h │ ├── lapacke_utils.h │ └── openblas_config.h ├── lib │ ├── libopenblas.a The static library. Only work with GCC. │ └── libopenblas.dll.a The import library for Visual Studio. └── readme.txt