fixing circleci build problem with knn filter

This commit is contained in:
Ella Pietraroia 2019-12-31 15:22:57 +10:30
parent 8ebfa0a7fb
commit 40b5374856
2 changed files with 6 additions and 0 deletions

View File

@ -35,3 +35,7 @@ import (
func NewMOGFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *NoOp {
return &NoOp{dst: dst}
}
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *KNNFilter {
return &NoOp{dst: dst}
}

View File

@ -1,4 +1,6 @@
/*
// +build !circleci
DESCRIPTION
A filter that detects motion and discards frames without motion. The
filter uses a K-Nearest Neighbours (KNN) to determine what is