Simple image effects written in C++
  • C++ 92.3%
  • CMake 7.7%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2025-12-09 20:07:49 +00:00
lib initial image loading of some sort 2023-04-02 21:38:31 +01:00
src docs: add README.md 2023-04-03 00:23:39 +01:00
.gitignore initial image loading of some sort 2023-04-02 21:38:31 +01:00
.gitmodules fix .gitmodules 2023-10-15 23:08:18 +01:00
CMakeLists.txt refactor: convert Image to a class 2023-04-03 00:21:01 +01:00
LICENSE add LICENSE 2025-12-09 20:07:49 +00:00
README.md docs: add README.md 2023-04-03 00:23:39 +01:00

Cpp Image Effects

In an effort to learn a bit more C++, I decided to write a few image effects. I'm using the stb_image and stb_image_write libraries to load and save images.

This tool applies a few effects to an image. The effects are:

  • Blur - A simple box blur

and that's it so far. A simple box blur. I'll add more as I learn more and have the time.