We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi Tadas,
I generated a dynamic linking library for Single CLM
Wrote a Java Wrapper to communicate the Single CLM Library form my java file
When i run my java file first time, I got the CLM points successfully.
Then i run the same java file for second time , unable to get the CLM Points.
I found the issue by put a log in SimpleCLM.cpp, Here is the Issue i run the same java file for second time i'm not getting the SUCCESS22 log.
cout<<"SUCCESS11"<<endl; bool detection_success = CLMTracker::DetectLandmarksInVideo(grayscale_image, depth_image, clm_model, clm_parameters); cout<<"SUCCESS22"<<endl;
Instead of camera,I'm using single Image for my java file testing
Please help me to clear the issues
The text was updated successfully, but these errors were encountered:
Are you running it on different images? Are the images from a video?
SimpleCLM is designed for face tracking in videos. For images you should be using SimpleCLMImg instead.
Sorry, something went wrong.
I tried both,frames from camera feed and different images . For both cases the issues are same . FYI: I am using older version of your CLM Version
Thanks with Regards, Gopi.R
No branches or pull requests
Hi Tadas,
I generated a dynamic linking library for Single CLM
Wrote a Java Wrapper to communicate the Single CLM Library form my java file
When i run my java file first time, I got the CLM points successfully.
Then i run the same java file for second time , unable to get the CLM Points.
I found the issue by put a log in SimpleCLM.cpp, Here is the Issue i run the same java file for second time i'm not getting the SUCCESS22 log.
cout<<"SUCCESS11"<<endl;
bool detection_success = CLMTracker::DetectLandmarksInVideo(grayscale_image, depth_image, clm_model, clm_parameters);
cout<<"SUCCESS22"<<endl;
Instead of camera,I'm using single Image for my java file testing
Please help me to clear the issues
The text was updated successfully, but these errors were encountered: