Live data from Hacker News

3D face: fast, accurate and stable reconstruction

github.com

1–10 of 22 posts

Re: 3D face: fast, accurate and stable reconstruction

#4

Welcome to give it a try :)

could you please share the training code so that I could better understand the implementation?

thanks for your interest, releasing the training code should be granted by my lab leader. I am trying to apply for it. If you have any question, welcome to raise an issue or email me :)

Re: 3D face: fast, accurate and stable reconstruction

#5

Welcome to give it a try :)

I had some problems getting it to run but after some handholding I managed to get all the demos to run. Amazing stuff!

I'll try to open an issue with all the problems I encountered.

I would also appreciate a demo with data output as well (actual 2d/3d points) along with a short description of what the format is.

Can this be used real-time?

Re: 3D face: fast, accurate and stable reconstruction

#6
post #5

Welcome to give it a try :)

I had some problems getting it to run but after some handholding I managed to get all the demos to run. Amazing stuff! I'll try to open an issue with all the problems I encountered. I would also appreciate a demo with data output as well (actual 2d/3d points) along with a short description of what the format is. Can this be used real-time?

Thanks for your interest and try. The theory computation complexity is described in the paper, it is rather small. However, whether achieving real-time really depends on your hardware, your need and the code optimization.

Re: 3D face: fast, accurate and stable reconstruction

#8
I love that the Colab notebook runs flawlessly!

I humbly recommend you add code so people can try out with online images:

  from skimage import io

  def get_image_from_url(url):
    # download the image using scikit-image
    print("downloading", url)
    image = io.imread(url)
    return image

Re: 3D face: fast, accurate and stable reconstruction

#10
post #8

I love that the Colab notebook runs flawlessly! I humbly recommend you add code so people can try out with online images: from skimage import io def get_image_from_url(url): # download the image using scikit-image print("downloading", url) image = io.imread(url) return image

Thanks for your advice : )
Post reply on HN