forked from Github/frigate
refactor motion calculation (#10380)
* refactor motion calculation * Use float
This commit is contained in:
@@ -404,6 +404,9 @@ def motion_activity():
|
||||
|
||||
# normalize data
|
||||
df = df.resample(f"{scale}S").sum().fillna(0.0)
|
||||
mean = df["motion"].mean()
|
||||
std = df["motion"].std()
|
||||
df["motion"] = (df["motion"] - mean) / std
|
||||
df["motion"] = (
|
||||
(df["motion"] - df["motion"].min())
|
||||
/ (df["motion"].max() - df["motion"].min())
|
||||
|
||||
Reference in New Issue
Block a user