shunsukesaito / PIFu

This repository contains the code for the paper "PIFu: Pixel-Aligned Implicit Function for High-Resolution Clothed Human Digitization"
https://shunsukesaito.github.io/PIFu/
Other
1.76k stars 341 forks source link

Non-squared image resolution #57

Closed faniry6 closed 4 years ago

faniry6 commented 4 years ago

I would like to train non-squared images datasets. Before going deeper into the coding, does it work for non-squared image? could you guide me which changes need to be done in case it does not? Of course, I could always apply some padding to my dataset to make it square but I will leave that as last option.

Thanks again.

shunsukesaito commented 4 years ago

Yes it does work for non-square images. However, please be aware that the width and height of an input image have to be multiple of 64 (4x downsampling before HG and 2^4x downsampling inside HG).

faniry6 commented 4 years ago

Cool! thanks for the quick reply, I will check it out.