Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

missing FaceTrackLib.dll #37

Open
nosarious opened this issue Aug 2, 2015 · 1 comment
Open

missing FaceTrackLib.dll #37

nosarious opened this issue Aug 2, 2015 · 1 comment

Comments

@nosarious
Copy link

After installing everything as per your documentation, and finagling a LOT with visceral studio, I found the program refused to start because FaceTrackLib.dll is missing.

On this page: https://github.com/MSOpenTech/KinectCommonBridge I found an answer, and thought you might want to include it in your documentation.

I "think" am building from the microsoft kinectCommonBridge files, but they 'should' be identical to yours, shouldn't they? Or do they have added 'fluff'?

(from that linked page)

To enable face tracking and voice recognition in your own project, you will need to add the following preprocessor defines to your project's C++ preprocessor properties:

KCB_ENABLE_FT
KCB_ENABLE_SPEECH
If you enable face tracking with the KCB_ENABLE_FT preprocessor define, you will need to include the following dll's with your application:

FaceTrackData.dll
FaceTrackLib.dll
These DLLs are part of the Kinect for Windows Developer Toolkit and are located in C:\Program Files\Microsoft SDKs\Kinect\Developer Toolkit v1.8.0\Redist. You will need to copy the correct versions of the DLLs depending on if you are doing a Win32 or x64 build. The Win32 DLLs are in the Redist\x86 folder and the x64 DLLs are in the Redist\amd64 folder. You can use the following post build event commands to copy the DLLs to your project's output directory:

Win32 Post Build Event

xcopy "$(FTSDK_DIR)Redist\x86\FaceTrackLib.dll" "$(OutDir)" /eiycq
xcopy "$(FTSDK_DIR)Redist\x86\FaceTrackData.dll" "$(OutDir)" /eiycq

@joshuajnoble
Copy link
Owner

I was really hesitant to include the Face Tracking library files because (at that time at least) they would only run on paid versions of Visual Studio. I will add this documentation though, thanks for the tip.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants