Open Dian-Yi opened 4 years ago
在lib/core/LK/lk.py中, line86: result.append(self.filter(now_landmarks[i], previous_landmarks[i])) 使用OneEuroFilter 来smooth; line144 : self.dx_prev = dx_hat 使用68个关键点中的上一个点的dx_prev,而不这个点对应上一帧的dx_prev。 这么写没问题么?虽然smooth对结果影响不是很大。
result.append(self.filter(now_landmarks[i], previous_landmarks[i]))
self.dx_prev = dx_hat
在lib/core/LK/lk.py中, line86:
result.append(self.filter(now_landmarks[i], previous_landmarks[i]))
使用OneEuroFilter 来smooth; line144 :self.dx_prev = dx_hat
使用68个关键点中的上一个点的dx_prev,而不这个点对应上一帧的dx_prev。 这么写没问题么?虽然smooth对结果影响不是很大。