diff --git a/server/nightr/strategies/miloStrats.py b/server/nightr/strategies/miloStrats.py index 3fc4c43..3d03666 100644 --- a/server/nightr/strategies/miloStrats.py +++ b/server/nightr/strategies/miloStrats.py @@ -11,7 +11,8 @@ def camImgStrat(context : Context) -> Prediction: The contents of the camera image """ img = context.image - average = img.mean(axis=0).mean(axis=0) + average = img.mean() + print(img.mean()) p = Prediction() p.weight = 0.7 if average < 100: