This cross-platform C++ library provides image filtering based on the recursive Gauss-Deriche filter and the accurate Gauss algorithm. The library also includes a console application for visualizing the algorithm's operation.
In the command line, the user inputs the following parameters separated by spaces:
- Path to the black-and-white image.
- Algorithm type: "gaussian" for the accurate Gauss filter or "deriche" for the recursive Gauss-Deriche filter.
- Sigma parameter (numeric value).
- Visualization parameter ("yes" or "no").
- Path to the folder to save the resulting image (e.g., C://test/output_data1.jpg).
- Clone the repository.
- Build the library and console application.
- Run the console application from the command line, providing the required parameters.
- OpenCV