We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
在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
The text was updated successfully, but these errors were encountered:
No branches or pull requests
在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对结果影响不是很大。
The text was updated successfully, but these errors were encountered: