NVlabs / few_shot_gaze

Pytorch implementation and demo of FAZE: Few-Shot Adaptive Gaze Estimation (ICCV 2019, oral)
https://research.nvidia.com/publication/2019-10_Few-Shot-Adaptive-Gaze
Other
325 stars 76 forks source link

normalization gaze part should be np.dot not * #29

Open SophieZhou opened 2 years ago

SophieZhou commented 2 years ago

As we have seen, in xucong zhang, the normalization of gaze is np.dot(R, gc). But in this paper, the normalization is R*gc, it is not the same with each other. I am not sure why you used this format.

SophieZhou commented 2 years ago

I am sorry, I have got the reason. It is ok to use * to do matrix not numpy array multiply .