mirror of https://bitbucket.org/ausocean/av.git
filter/filters_circleci.go fix type to NoOp
This commit is contained in:
parent
f06d9641c8
commit
ab211be6eb
|
@ -36,6 +36,6 @@ func NewMOGFilter(dst io.WriteCloser, area, threshold float64, history, kernelSi
|
|||
return &NoOp{dst: dst}
|
||||
}
|
||||
|
||||
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *KNNFilter {
|
||||
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *NoOp {
|
||||
return &NoOp{dst: dst}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue