apply method
Apply the Filter to an Image.
Implementation
void apply(Uint8List pixels) {
for (SubFilter subFilter in subFilters) {
subFilter.apply(pixels);
}
}
Apply the Filter to an Image.
void apply(Uint8List pixels) {
for (SubFilter subFilter in subFilters) {
subFilter.apply(pixels);
}
}