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
- Host: GitHub
- URL: https://github.com/sairupeshl/c-image-processor
- Owner: sairupeshl
- License: mit
- Created: 2026-06-07T14:24:20.000Z (17 days ago)
- Default Branch: main
- Last Pushed: 2026-06-07T14:26:24.000Z (17 days ago)
- Last Synced: 2026-06-07T16:14:37.431Z (17 days ago)
- Topics: c, image-processing
- Language: C
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.