-
Notifications
You must be signed in to change notification settings - Fork 19
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
texture transfer #4
Comments
Hi, sorry that the texture transfer code is not available currently. To achieve similar texture transfer result, here is a brief approach:
After all these steps, you can get a texture transfer result from source to target. |
Hi, in figure 2 in the paper, the |
The texture transfer stage does not need delta s which is a scalar adding on the SDF value of a point. To be exact, the point in the canonical space is p'. So you first have some surface points p on a certain shape (which is the original shape space), and you can send them into the deform-net to get p' in the canonical space. Then you can use p' to calculate nearest neighbors and do the texture transfer. In this stage, there is no need to use the template field as well as delta s predicted by the deform-net. |
Thanks, now I understand better. I implemented this based on my understanding. Is this what you mean? For getting latent code, I'm not sure if the subject_idx is corresponding the same order as the files in the folder. The deformed point cloud looks a bit weird. |
The code is exactly what I mean. The subject_idx has the same order as the training subjects in split/train/xxx.txt instead of the point cloud provided in this repo (which are evaluation data). As a result, one way is to first extract the shape surface of training subjects by running generate.py, and then send the surface points into the deform-net to conduct texture transfer. |
Hi, thanks for the great work!
I'm doing a research project and your texture transfer is quite interesting and might be applicable for my case. Would you have any plan to release the code about how you produced figure10?
The text was updated successfully, but these errors were encountered: