We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
To create the new processing command you have to implement
public interface IImageProcessorCommand { IEnumerable<ImageWrapper<T>> Perform<T>(IEnumerable<ImageWrapper<T>> images); }
T - is a type - representation of colour (RBG)
T
images - images you pass inside, all of them should be returned respectfully to the command
images
Examples: ApplyAlgorithmCommand and ScaleImageCommand
ApplyAlgorithmCommand
ScaleImageCommand