yfeng95 / face3d

Python tools for 3D face: 3DMM, Mesh processing(transform, camera, light, render), 3D face representations.
2.68k stars 614 forks source link

Erros codes in "face3d/mesh/transform.py" #71

Open LizhenWangT opened 4 years ago

LizhenWangT commented 4 years ago

line 235, "X_homo = np.hstack((X, np.ones([X.shape[1],1]))) #n x 4"
should be "X_homo = np.hstack((X, np.ones([X.shape[0],1]))) #n x 4"