mirror of
https://gitcode.com/gh_mirrors/ope/OpenFace.git
synced 2026-07-24 05:17:47 +00:00
- A better way to link to OpenBLAS (using pre-compiled binaries), this leads to faster computation on Windows
- Demo script fixes
This commit is contained in:
6
lib/3rdParty/OpenBLAS/OpenBLAS.props
vendored
6
lib/3rdParty/OpenBLAS/OpenBLAS.props
vendored
@@ -8,15 +8,15 @@
|
||||
<AdditionalIncludeDirectories>$(SolutionDir)lib\3rdParty\OpenBLAS\include;%(AdditionalIncludeDirectories)</AdditionalIncludeDirectories>
|
||||
</ClCompile>
|
||||
<Link>
|
||||
<AdditionalLibraryDirectories>$(SolutionDir)lib\3rdParty\OpenBLAS\lib\$(PlatformShortName)\$(PlatformToolset);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>libopenblas.lib;libopenblas.exp;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
<AdditionalLibraryDirectories>$(SolutionDir)lib\3rdParty\OpenBLAS\lib\$(PlatformShortName);%(AdditionalLibraryDirectories)</AdditionalLibraryDirectories>
|
||||
<AdditionalDependencies>libopenblas.dll.a;%(AdditionalDependencies)</AdditionalDependencies>
|
||||
</Link>
|
||||
<PreBuildEvent>
|
||||
<Command>
|
||||
</Command>
|
||||
</PreBuildEvent>
|
||||
<PreLinkEvent>
|
||||
<Command>xcopy /I /E /Y /D /C "$(SolutionDir)lib\3rdParty\OpenBlas\bin\$(PlatformShortName)\$(PlatformToolset)\libopenblas.dll" "$(OutDir)"</Command>
|
||||
<Command>xcopy /I /E /Y /D /C "$(SolutionDir)lib\3rdParty\OpenBlas\bin\$(PlatformShortName)" "$(OutDir)"</Command>
|
||||
</PreLinkEvent>
|
||||
</ItemDefinitionGroup>
|
||||
<ItemGroup />
|
||||
|
||||
BIN
lib/3rdParty/OpenBLAS/bin/x64/v140/libopenblas.dll
vendored
BIN
lib/3rdParty/OpenBLAS/bin/x64/v140/libopenblas.dll
vendored
Binary file not shown.
BIN
lib/3rdParty/OpenBLAS/bin/x86/v140/libopenblas.dll
vendored
BIN
lib/3rdParty/OpenBLAS/bin/x86/v140/libopenblas.dll
vendored
Binary file not shown.
BIN
lib/3rdParty/OpenBLAS/lib/x64/v140/libopenblas.exp
vendored
BIN
lib/3rdParty/OpenBLAS/lib/x64/v140/libopenblas.exp
vendored
Binary file not shown.
BIN
lib/3rdParty/OpenBLAS/lib/x64/v140/libopenblas.lib
vendored
BIN
lib/3rdParty/OpenBLAS/lib/x64/v140/libopenblas.lib
vendored
Binary file not shown.
BIN
lib/3rdParty/OpenBLAS/lib/x86/v140/libopenblas.exp
vendored
BIN
lib/3rdParty/OpenBLAS/lib/x86/v140/libopenblas.exp
vendored
Binary file not shown.
BIN
lib/3rdParty/OpenBLAS/lib/x86/v140/libopenblas.lib
vendored
BIN
lib/3rdParty/OpenBLAS/lib/x86/v140/libopenblas.lib
vendored
Binary file not shown.
@@ -21,10 +21,13 @@ verbose = true;
|
||||
%model = 'model/main_clm_wild.txt';
|
||||
|
||||
% Trained on in the wild and multi-pie data (more accurate CLNF model)
|
||||
model = 'model/main_dclm_general.txt';
|
||||
%model = 'model/main_clnf_general.txt';
|
||||
% Trained on in-the-wild
|
||||
%model = 'model/main_clnf_wild.txt';
|
||||
|
||||
% Trained on in the wild and multi-pie data (most accurate CE-CLM model)
|
||||
model = 'model/main_ceclm_general.txt';
|
||||
|
||||
command = executable;
|
||||
|
||||
command = cat(2, command, [' -fdir "' in_dir '"']);
|
||||
|
||||
@@ -22,10 +22,13 @@ verbose = true;
|
||||
%model = 'model/main_clm_wild.txt';
|
||||
|
||||
% Trained on in the wild and multi-pie data (more accurate CLNF model)
|
||||
model = 'model/main_clnf_general.txt';
|
||||
% model = 'model/main_clnf_general.txt';
|
||||
% Trained on in-the-wild
|
||||
%model = 'model/main_clnf_wild.txt';
|
||||
|
||||
% Trained on in the wild and multi-pie data (most accurate CE-CLM model)
|
||||
model = 'model/main_ceclm_general.txt';
|
||||
|
||||
command = executable;
|
||||
command = cat(2, command, [' -mloc "', model, '"']);
|
||||
% add all videos to single argument list (so as not to load the model anew
|
||||
|
||||
@@ -23,10 +23,13 @@ verbose = true;
|
||||
%model = 'model/main_clm_wild.txt';
|
||||
|
||||
% Trained on in the wild and multi-pie data (more accurate CLNF model)
|
||||
model = 'model/main_dclm_general.txt';
|
||||
% model = 'model/main_clnf_general.txt';
|
||||
% Trained on in-the-wild
|
||||
%model = 'model/main_clnf_wild.txt';
|
||||
|
||||
% Trained on in the wild and multi-pie data (most accurate CE-CLM model)
|
||||
model = 'model/main_ceclm_general.txt';
|
||||
|
||||
command = executable;
|
||||
command = cat(2, command, [' -mloc "', model, '"']);
|
||||
% add all videos to single argument list (so as not to load the model anew
|
||||
|
||||
Reference in New Issue
Block a user