This section will guide you through installing and using the application.
Navigate to the root of your project and run:
|
CLI is available:
|
The following examples assume you are have input
and output
directories in the root of your project.
Applying a horizontal reflect on an image using GPU:
dotnet run ImageProcessing --strategy gpu -i input/image.jpg -o output/ reflecth
Sequentially applying blur and clockwise rotation on an image using CPU:
dotnet run ImageProcessing --strategy cpu -i input/image.jpg -o output/ blur rotate
Processing multiple files inside a directory and applying blur, edges and vertical reflect using CPU and utilizing multiple threads:
dotnet run ImageProcessing --strategy async2cpu --threads 4 -i input/ -o output/ blur edges reflectv