- Ensure you have Python installed
- Ensure you have a C compiler installed
- Create a Python virtual environment by running
python -m venv venv
- Activate the venv by running
source venv/bin/activate
- Install dependencies by running
pip install -r requirements.txt
- Create the shared C library by running
make
- Run
make run
- An easy to use Image Processing Toolbox that contains various operations to do on RGB and greyscale images
- All image operations use C functions to speed up computations
- Built to get a better understanding of certain image processing techniques and how they work under the hood
- Also wanted to learn more about C -> Python interoperability using
ctypes
- There are many more operations that can be added such as object detection, image labeling, and also some bugs to iron out
- Feel free to open a PR for literally anything