run-youngjoo / SC-FEGAN

SC-FEGAN : Face Editing Generative Adversarial Network with User's Sketch and Color (ICCV2019)
Other
3.35k stars 530 forks source link

The generator seems didn't use "mask" information. #40

Closed penguinbing closed 5 years ago

penguinbing commented 5 years ago

As the title said. Thank you.

abtExp commented 5 years ago

It does use the mask, the x (input) is a combination of the sketch, color, noise, mask and masked image. The generator produces the completed image which is then multiplied with the mask to obtain only the masked portion from the generated image and the unmasked image is kept the same, thus reducing the noise introduced by the generator.

penguinbing commented 5 years ago

Thank you very much. The generator input parameters were misleading.