aadha3 2019-09-01 00:31:11 +02:00 коммит произвёл GitHub
Родитель 138ff7399d
Коммит b8998d7f5a
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 4 добавлений и 4 удалений

Просмотреть файл

@ -61,9 +61,9 @@ def demo():
# reshape outputs
input_img = np.squeeze(input_img)
shape = np.squeeze(face_shape,[0])
color = np.squeeze(face_color,[0])
landmarks_2d = np.squeeze(landmarks_2d,[0])
shape = np.squeeze(face_shape, (0))
color = np.squeeze(face_color, (0))
landmarks_2d = np.squeeze(landmarks_2d, (0))
# save output files
# cropped image, which is the direct input to our R-Net
@ -73,4 +73,4 @@ def demo():
save_obj(os.path.join(save_path,file.split('\\')[-1].replace('.png','_mesh.obj')),shape,tri,np.clip(color,0,255)/255) # 3D reconstruction face (in canonical view)
if __name__ == '__main__':
demo()
demo()