You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You're right, our intention is to streamline the script by removing any unnecessary code. However, it appears that in doing so, we may have accidentally removed come important code as well. We will revise the script to make it more concise while ensuring no vital functionality is lost. Thank you for catching this issue - your feedback will help us improve the script moving forward.
Missing function LoadExpBasis.
But I found this function in project ( https://github.com/sicxu/Deep3DFaceRecon_pytorch).
def LoadExpBasis(bfm_folder='BFM'):
n_vertex = 53215
Expbin = open(osp.join(bfm_folder, 'Exp_Pca.bin'), 'rb')
exp_dim = array('i')
exp_dim.fromfile(Expbin, 1)
expMU = array('f')
expPC = array('f')
expMU.fromfile(Expbin, 3n_vertex)
expPC.fromfile(Expbin, 3exp_dim[0]*n_vertex)
Expbin.close()
Is this correct?
The text was updated successfully, but these errors were encountered: