tranluan / Nonlinear_Face_3DMM

Source code for "Nonlinear 3D Face Morphable Model"
http://cvlab.cse.msu.edu/project-nonlinear-3dmm.html
Apache License 2.0
676 stars 123 forks source link

Where is the output model?And how can I input own image? #10

Open Ivy147 opened 5 years ago

Ivy147 commented 5 years ago

Hi,tranluan, Thank you for your job. I ran rendering_example.py, then I got a rendered_img.png and a texture.png. But where can I find the model of test data?And how can I produce test data of my own images?

tranluan commented 5 years ago

We're planning to release the trained model and/or the completed code at the end of the month.

boxer276 commented 5 years ago

i have the same question, looking forward of the completed code

wadesunyang commented 5 years ago

looking forward of the completed code

noranart commented 5 years ago

Any luck for the completed code? I would really appreciate any help.

tranluan commented 5 years ago

Sorry for the delay. I was busy with the ICCV deadline. I'm planning to release the completed code by April 15.

deepcs233 commented 5 years ago

looking forward of the completed code

ARQlalala commented 5 years ago

looking forward for the completed code

Easonzero commented 5 years ago

looking forward for the completed code

onlineplay commented 5 years ago

looking forward for the completed code

ava-YangL commented 5 years ago

looking forward for the completed code

BigDataHa commented 5 years ago

looking forward for the completed code

tranluan commented 5 years ago

Most of the code and data is pushed. I'm going to clean up a little bit. The training code should be complete in a day or two

BigDataHa commented 5 years ago

Are you going to update it?

BigDataHa commented 5 years ago

13 days have passed ...

MyLostBear commented 5 years ago

13 days have passed ...

another 13 days have passed

cddlyf commented 5 years ago

another 28 days passed!

huyanfei-cqupt commented 4 years ago

Sorry for the delay. I was busy with the ICCV deadline. I'm planning to release the completed code by April 15.

looking forward of the completed code

huyanfei-cqupt commented 4 years ago

.

Any luck for the completed code? I would really appreciate any help.

pminhtam commented 4 years ago
    def test(self, config,input_images_fn_300W,input_masks_fn_300W):

        tx = np.random.random_integers(0, 32, size=config.batch_size)
        ty = np.random.random_integers(0, 32, size=config.batch_size)
        tf.global_variables_initializer().run()

        ffeed_dict = {self.input_images_fn_300W[0] : input_images_fn_300W,self.input_offset_height: tx, self.input_offset_width: ty,\
                     self.input_masks_fn_300W[0]:input_masks_fn_300W}
        img , texture,albedo,shade = self.sess.run([self.G_images_300W,self.texture_300W,self.albedo_300W, self.shade_300W], feed_dict=ffeed_dict)
        print(img , texture )
        return img , texture,albedo,shade

This is code i use to test model

HOMGH commented 4 years ago

Hi,tranluan, Thank you for your job. I ran rendering_example.py, then I got a rendered_img.png and a texture.png. But where can I find the model of test data?And how can I produce test data of my own images?

Hi, Would you please give some details about your system config? I have problem with running render_example.py code. I'm on ubuntu18, python2.7 and tensorflow 1.18.

cyjouc commented 3 years ago

Hi,tranluan, Thank you for your job. I ran rendering_example.py, then I got a rendered_img.png and a texture.png. But where can I find the model of test data?And how can I produce test data of my own images?

Hi, Would you please give some details about your system config? I have problem with running render_example.py code. I'm on ubuntu18, python2.7 and tensorflow 1.18.

I'm on ubuntu16, python2.7 and tensorflow 1.8. the same problem.Could you share experience with me?