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

pix2pix network #11

Open
stephentandjiria opened this issue May 2, 2021 · 0 comments
Open

pix2pix network #11

stephentandjiria opened this issue May 2, 2021 · 0 comments

Comments

@stephentandjiria
Copy link

stephentandjiria commented May 2, 2021

Hi, this is a great implementation! not only the code is complete from model to plotting phase, but the 3D plot is detailed as well!

As a new deep learning enthusiast I have learned alot from your code, but I still don't understand about the pix2pix output shape : (1, 7, 512, 512)

from reconstructor.py I just noticed that the 7 is separated into two variables: im_pncc and im_depth,
but I have difficulties understanding what im_pncc is and why in the following code:
mask = np.any(im_depth, axis=2) * np.all(im_pncc, axis=2)

is not just:
mask = np.any(im_depth, axis=2)
since im_depth across each of 512x512 already shows the location of the face, therefore there is no need for im_pncc (?)

and lastly, is there any way to train the pix2pix model for full-body 3D?

Thank you !

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

1 participant