this good
This commit is contained in:
@@ -61,8 +61,7 @@ class PoseLandmarkSmoother(
|
||||
SmoothedLandmark(
|
||||
x = prev.x + (smoothingFactor * (landmark.position.x - prev.x)),
|
||||
y = prev.y + (smoothingFactor * (landmark.position.y - prev.y)),
|
||||
inFrameLikelihood = prev.inFrameLikelihood +
|
||||
(smoothingFactor * (landmark.inFrameLikelihood - prev.inFrameLikelihood)),
|
||||
inFrameLikelihood = landmark.inFrameLikelihood,
|
||||
)
|
||||
}
|
||||
previous[landmark.landmarkType] = next
|
||||
|
||||
Reference in New Issue
Block a user