phillipi / pix2pix

Image-to-image translation with conditional adversarial nets

Home Page:https://phillipi.github.io/pix2pix/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Issue about PatchGAN

thomascong121 opened this issue · comments

Hi:

I am wondering why it is sufficient to restrict attention to the structure in local image patches to model high-level features?

This is an interesting question. One thing to recognize first is that the generator has receptive fields that cover the entire image, and that's what allows the generator to model high-level features. The PatchGAN discriminator can indeed get away with relatively small receptive fields, and ultimately that's related to natural image statistics, the level of stochasticity in the mapping you are learning, and the spatial density of information in the input image to the generator.

Hello, I wonder why it is available for discriminator to just force high-frequency correctness by restricting its receptive field in local image patches?

It is my understanding that it change the whole task of determining a picture is true or false into many sub-tasks of determining a image patch is true or false, which greatly reduces the complexity of the task, and it ultimately help to improve the performance, but nothing to do with the high-frequency information.

Could you please explain it for me? Thanks a lot!