don't need circleci build tag because gocv is not used

This commit is contained in:
Ella Pietraroia 2020-01-31 13:38:04 +10:30
parent 36d9e0f958
commit ca0b146419
2 changed files with 0 additions and 6 deletions

View File

@ -1,5 +1,3 @@
// +build !circleci
/*
DESCRIPTION
A filter that detects motion and discards frames without motion. The

View File

@ -45,7 +45,3 @@ func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSi
func NewDifference(dst io.WriteCloser, debug bool, threshold float64) *NoOp {
return &NoOp{dst: dst}
}
func NewBasicFilter(dst io.WriteCloser, debug bool) *Basic {
return &NoOp{dst: dst}
}