fyviezhao

Results 22 comments of fyviezhao

@sanazsab Hi, I also met this ImportError. It can be solved by `sudo apt install libgl1-mesa-glx`. You may need reach out to the server manager for installing this package since...

Also met the same error. Installing in a conda environment within a nivdia docker via `python setup.py install`. I resolved this error by: ```shell $ git clone https://github.com/libigl/libigl-python-bindings.git $ cd...

@teseoch Hi, would you please consider to release `v2.2.2` version of **conda libigl package**? I'm working on a 2D bbw project, and have to install libigl via `python setup.py install`...

Refer to this [doc](https://github.com/BadourAlBahar/pose-with-style/blob/main/DATASET.md) (Sec.2 computing densepose) for creating densepose from custom images.

Same here. Moreover, can it transfer full_body outfits between persons, i.e., --part=full body?

To enable the `--part` flag, modify this [line](https://github.com/BadourAlBahar/pose-with-style/blob/b8aedea1e4b0fc210465c1f5c3fa1fc57e07a432/garment_transfer.py#L171): ``` g_ema = Generator(args.size, args.latent, args.n_mlp, channel_multiplier=args.channel_multiplier, garment_transfer=True).to(device) ``` to ``` g_ema = Generator(args.size, args.latent, args.n_mlp, channel_multiplier=args.channel_multiplier, garment_transfer=True, part=args.part).to(device) ``` I also...

Actually, the gan loss is not used and thus this line of add_argument is redundant. FND and BND are therefore not used, either.

Sorry for the late reply: 1. The rotating visualization is rendered through [this script](https://gist.github.com/fyviezhao/c6f80e42189fae721d551c481381ebfa). Basically, it is obtained by rotating the colored mesh 360 degrees along the z-axis and rendering...

Sorry for the late reply. Please check the latest code for training, which should now work well.