An open API service indexing awesome lists of open source software.

https://github.com/sairupeshl/c-image-processor

A command-line application in C to apply visual filters (Grayscale, Reflection, Box Blur, and Edge Detection) to 24-bit BMP images
https://github.com/sairupeshl/c-image-processor

c image-processing

Last synced: 16 days ago
JSON representation

A command-line application in C to apply visual filters (Grayscale, Reflection, Box Blur, and Edge Detection) to 24-bit BMP images

Awesome Lists containing this project

README

          

# C-Based Image Processor
*Tech:* C

- Built a command-line application in C to apply visual filters (Grayscale, Reflection, Box Blur, and Edge Detection) to 24-bit BMP images.
- Implemented image processing algorithms by iterating over 2D arrays of RGB pixel structs and applying mathematical transformations.
- Utilized the Sobel operator and convolution kernels to calculate weighted sums of surrounding pixels for edge detection.