Anastasiia Kriuchkovska
Anastasiia Kriuchkovska
I have scikit-image ver. 0.14.0 and it still does not work. The same error. I also tried to change the range of values of `uv_position_map` to (0,1) and (-1,-1) or...
Issue resolved! You should change `uv_coords = face3d.morphable_model.load.load_uv_coords('./Data/BFM/stn/BFM_UV.mat')` to `uv_coords = face3d.morphable_model.load.load_uv_coords('./Data/BFM/Out/BFM_UV.mat')`
> But it is like that https://github.com/YadiraF/face3d/blob/master/examples/7_generate_uv_map.py#L36 As I understood, script in [7_generate_uv_map.py](https://github.com/YadiraF/face3d/blob/master/examples/7_generate_uv_map.py#L36) loads 3d model from example1.mat file with its vertices and colors and creates from it a uv-position...
Partly fixed it by deleting code which applies random perturbation to input data. Number of successed examples doubled :)
@wqz960 in [8_generate_posmap_300WLP.py](https://github.com/YadiraF/face3d/blob/master/examples/8_generate_posmap_300WLP.py) there are lines for applying random perturbation for data: ` marg = old_size*0.1 ` ` t_x = np.random.rand()*marg*2 - marg` ` t_y = np.random.rand()*marg*2 - marg` `...
@wqz960 I also wrapped code in several functions and used `try: except:`. So some items of the dataset are processed and some not (the same error with `ValueError`). I can...
Yes, the pncc_code.mat is copied in line 60: `copyfile('3ddfa/vertex_code.mat', 'Out/pncc_code.mat')` So `copyfile('3ddfa/pncc_code.mat', 'Out/pncc_code.mat')` in line 100 is not needed.
I'm using BFM2017 for training. Now it works (uv map for almost every example in the training set is generated, the training process is launched). Later I may answer about...
@VincentXWD It's Scalismo (from [here](http://gravis.dmi.unibas.ch/PMM/software/) ) or it's The Basel Illumination Prior (from [here](http://gravis.dmi.unibas.ch/PMM/data/overview/) ) ?
@TSampley if I install `pylink` by `pip install PyLink` and then try to run some of the PyGaze examples, there are errors about lacking classes. For example, by running `example.py`...