export GrayScale API

This commit is contained in:
sugarme 2022-02-07 16:02:34 +11:00
parent 04d738db1e
commit b738c52d5b

View File

@ -86,3 +86,7 @@ func WithRandomGrayscale(pvalueOpt ...float64) Option {
o.randomGrayscale = rgs
}
}
func NewGrayscale(outChanOpt ...int64) *Grayscale {
return newGrayscale(outChanOpt...)
}