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

Is there a demo on how to mark the points? #2

Open
rsiddharth-clustrex opened this issue Jan 14, 2020 · 2 comments
Open

Is there a demo on how to mark the points? #2

rsiddharth-clustrex opened this issue Jan 14, 2020 · 2 comments

Comments

@rsiddharth-clustrex
Copy link

I'm a beginner. When I try to run it using my own mesh, the output mesh looks like:
output
Here's the source reference
src

@SuwoongHeo
Copy link
Owner

Sorry for the late response. Unfortunately, the points are marked manually with Matlab. Specifically, visualize the mesh by using "patch" function and use data cursor to select a specific vertex on it. Then export it to the workspace and find the index of the vertex by using, for example,

tt =cursor_info.Position;
find(vertices(:,1)==tt(1) & vertices(:,2)==tt(2) & vertices(:,3)==tt(3));
tmp(i,:) = ans;

@SuwoongHeo
Copy link
Owner

For the record, the above result is produced because the source mesh is assumed to be covered by the target mesh. It seems that you might have used a FaceWarhouse model as source and 3DMM as a target. However, 3DMM has missing part of had especially back of the head. Thus, I recommend swapping input. It would be work then.

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