We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fc2c362 commit d30f216Copy full SHA for d30f216
v2/blob/kalman_blob.go
@@ -142,7 +142,7 @@ func (b *KalmanBlobie) Update(newb Blobie) error {
142
b.isStillBeingTracked = true
143
b.isExists = true
144
// Append new point to track
145
- b.Track = append(b.Track, newbCast.Center)
+ b.Track = append(b.Track, b.Center)
146
b.TrackTime = append(b.TrackTime, newbCast.TrackTime[len(newbCast.TrackTime)-1])
147
// Restrict number of points in track (shift to the left)
148
if len(b.Track) > b.maxPointsInTrack {
0 commit comments