filters_circleci.go: Changed function to pass circleci builds

This commit is contained in:
Scott 2020-01-23 12:49:45 +10:30
parent 207e96b999
commit eca9453399
1 changed files with 1 additions and 1 deletions

View File

@ -36,6 +36,6 @@ func NewMOGFilter(dst io.WriteCloser, area, threshold float64, history int, debu
return &NoOp{dst: dst}
}
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool) *NoOp {
func NewKNNFilter(dst io.WriteCloser, area, threshold float64, history, kernelSize int, debug bool, hf int) *NoOp {
return &NoOp{dst: dst}
}