TadasBaltrusaitis / OpenFace

OpenFace – a state-of-the art tool intended for facial landmark detection, head pose estimation, facial action unit recognition, and eye-gaze estimation.
Other
6.96k stars 1.85k forks source link

Links of ddl documents from download_libraries.ps1 lose efficacy #1094

Open hedgehog-8 opened 1 month ago

hedgehog-8 commented 1 month ago

When I was running download_libraies.ps1, it showed me: Invoke-WebRequest : 无法连接到远程服务器

and then, I used links showed in the document, like: https://onedrive.live.com/download?cid=2E2ADA578BFF6E6E&resid=2E2ADA578BFF6E6E%2153244&authkey=AEuLAF197Sy7S3M

but I finally got this: image

May I know how to get those three dll documents? Or May you share them with me? hope for your help!! TAT

brmarkus commented 1 month ago

Which installation method do you follow under "https://github.com/TadasBaltrusaitis/OpenFace/wiki/Windows-Installation"?

You could use the ZIP files from the section "https://github.com/TadasBaltrusaitis/OpenFace/wiki/Windows-Installation#binaries": image Then you have all the DLLs already.

hedgehog-8 commented 1 month ago

thank you!! I've sloved this problem! XD

seTalent commented 1 month ago

Which installation method do you follow under "https://github.com/TadasBaltrusaitis/OpenFace/wiki/Windows-Installation"?

You could use the ZIP files from the section "https://github.com/TadasBaltrusaitis/OpenFace/wiki/Windows-Installation#binaries": image Then you have all the DLLs already.

Hello, how did you obtain the opencv_world410d.dll file? This file does not seem to be in the zip file provided. Can you provide it please?

brmarkus commented 1 month ago

The ZIP file contains "opencv_world410.dll", which doesn't contain debug-infos (like the other DLLs, without debug infos). Do you need the debug-infos for that specific DLL?

seTalent commented 1 month ago

The ZIP file contains "opencv_world410.dll", which doesn't contain debug-infos (like the other DLLs, without debug infos). Do you need the debug-infos for that specific DLL?

image

Yes, I need! But I don't know how to deal with debug-infos. What can I do to replace the original opencv_world410d.dll file by using it?

brmarkus commented 1 month ago

The ZIP-file doesn't contain a version with debug-infos. Do you need the debug-infos to really do debugging and check variable values, step into methods and see the source code with a debugger?

If you don't do debugging and don't need the debug-infos, then you could just copy the file from the ZIP-archive and rename it to "opencv_world410.dll", just adding a "d".

seTalent commented 1 month ago

The ZIP-file doesn't contain a version with debug-infos. Do you need the debug-infos to really do debugging and check variable values, step into methods and see the source code with a debugger?

If you don't do debugging and don't need the debug-infos, then you could just copy the file from the ZIP-archive and rename it to "opencv_world410.dll", just adding a "d".

I don't need to debug at the moment, I just need to use it. I will try it as you say, thank you!