Contains answers to the weekly tasks.
I opted to write my answers in simple .txt files, so that everything can be graded within a code editor.
Includes the Project Paper as a PDF.
Contains the Image Enhancement Project.
- Navigate to the Project folder:
cd Project - Generate build files using CMake:
cmake -B build . - Navigate to the build folder:
cd build - Build the project:
cmake --build .
- CMake is using MSVC instead of GCC / Clang (MinGW)?
Force CMake to use G++ by running:Or manually set the CMake env variables to a different compiler.cmake -B build -G "MinGW Makefiles" -DCMAKE_C_COMPILER=gcc -DCMAKE_CXX_COMPILER=g++
Run the Image Enhancer with:
./main <path_to_image> <parameters>For help, use:
./main -hRun the unit tests with: ./catch_tests_image_enhancer