mirror of https://bitbucket.org/ausocean/av.git
fixing circleci build problem with knn filter
This commit is contained in:
parent
8ebfa0a7fb
commit
40b5374856
|
@ -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}
|
||||
}
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue