applyFilters method
- ImageRef image,
- List<
ParametricFilter> filters
Applies the given filters on the image.
image - Reference of the image to be processed.
filters - List of filters to be applied on the image.
Returns a Future that completes with reference of the image with applied filters.
Implementation
Future<Result<ImageRef>> applyFilters(
ImageRef image, List<ParametricFilter> filters) {
return ScanbotImageProcessorImpl.applyFilters(image, filters);
}