3D face: fast, accurate and stable reconstruction
1–10 of 22 posts
Re: 3D face: fast, accurate and stable reconstruction
#2Re: 3D face: fast, accurate and stable reconstruction
#3Welcome to give it a try :)
Re: 3D face: fast, accurate and stable reconstruction
#4Welcome to give it a try :)
could you please share the training code so that I could better understand the implementation?
Re: 3D face: fast, accurate and stable reconstruction
#5Welcome to give it a try :)
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
#6Welcome 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
#7Re: 3D face: fast, accurate and stable reconstruction
#8I 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 imageRe: 3D face: fast, accurate and stable reconstruction
#9Re: 3D face: fast, accurate and stable reconstruction
#10I 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