mirror of https://bitbucket.org/ausocean/av.git
fixing comments
This commit is contained in:
parent
e107b682bb
commit
0189fad0e2
|
@ -51,7 +51,7 @@ const (
|
|||
|
||||
type pixel struct{ r, g, b uint32 }
|
||||
|
||||
// BasicFilter is a filter that provides basic motion detection via a difference
|
||||
// Basic is a filter that provides basic motion detection via a difference
|
||||
// method.
|
||||
type Basic struct {
|
||||
dst io.WriteCloser
|
||||
|
@ -65,7 +65,7 @@ type Basic struct {
|
|||
debug bool
|
||||
}
|
||||
|
||||
// NewBasicFilter returns a pointer to a new Basic filter struct.
|
||||
// NewBasic returns a pointer to a new Basic filter struct.
|
||||
func NewBasic(dst io.WriteCloser, debug bool) *Basic {
|
||||
bwImg := image.NewRGBA(image.Rect(0, 0, 0, 0))
|
||||
var file io.WriteCloser
|
||||
|
|
Loading…
Reference in New Issue