A WPF application that converts images to grayscale.
Explore the docs »
Report Bug
·
Request Feature
Table of Contents
ImageConverter is a WPF application built using the MVVM design pattern. It allows users to upload an image, convert it to grayscale, and save the result. Users can choose between sequential and parallel processing modes:
- Sequential Processing: Uses pointers for performance.
- Parallel Processing: Parallel execution to utilize multiple cores.
Follow these steps to get a local copy up and running.
- .NET 6.0 SDK or later
- Visual Studio 2022 or another IDE with WPF support
-
Clone the repo.
-
Open the solution in Visual Studio and build the project.
- Launch the application.
- Upload an image file using the provided UI.
- Select the processing mode, sequential or paralell
- Process the image to convert it to grayscale.
- Save the converted image to your local storage.
- Improve the user interface for a more modern look.
- Add unit tests.
- Implement better benchmarking tools to measure processing times.
- Support additional image formats.
- Enable bulk image processing.
- Enable block processing/image tiling for paralell processing.
See the open issues for a full list of proposed features (and known issues).
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature) - Commit your Changes (
git commit -m 'Add some AmazingFeature') - Push to the Branch (
git push origin feature/AmazingFeature) - Open a Pull Request
Distributed under the MIT License. See LICENSE.txt for more information.
mavosy - maltesydow@gmail.com
Project Link: https://github.com/mavosy/ImageConverter
