From 6d45572a8221b085b44fd2bda7e1667b803d2dbf Mon Sep 17 00:00:00 2001 From: Ella Pietraroia Date: Tue, 31 Dec 2019 13:37:47 +1030 Subject: [PATCH] Documentation comments --- filter/knn.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/filter/knn.go b/filter/knn.go index efa43862..3e494253 100644 --- a/filter/knn.go +++ b/filter/knn.go @@ -1,11 +1,11 @@ /* DESCRIPTION A filter that detects motion and discards frames without motion. The - filter uses a Mixture of Gaussians method (KNN) to determine what is + filter uses a K-Nearest Neighbours (KNN) to determine what is background and what is foreground. AUTHORS - Scott Barnard + Ella Pietraroia LICENSE KNN.go is Copyright (C) 2019 the Australian Ocean Lab (AusOcean) @@ -35,7 +35,7 @@ import ( ) // KNNFilter is a filter that provides basic motion detection. KNN is short for -// Mixture of Gaussians method. +// K-Nearest Neighbours method. type KNNFilter struct { dst io.WriteCloser area float64