I made an ASCII art generator in C

I built an ASCII art generator in C that converts images into colorful terminal art with edge detection. This is a great project if you're interested in C programming, terminal graphics, or image processing! I walk through loading images with stb_image, resizing them for the terminal, converting RGB to HSV, printing to the terminal with ANSI escape codes, and implementing Sobel edge detection to highlight edges. GitHub repo: https://github.com/gouwsxander/ascii-... Links to some of the things I talk about or found useful: Kay Lack video on bitmap files:    • Making .BMP images from scratch   stb_image repo: https://github.com/nothings/stb Wikipedia article for HSV: https://en.wikipedia.org/wiki/HSL_and... Wikipedia article for ANSI codes: https://en.wikipedia.org/wiki/ANSI_es... Wikipedia article for Sobel edge detection: https://en.wikipedia.org/wiki/Sobel_o... Acerola video on ASCII art:    • I Tried Turning Games Into Text   Timestamps: 0:00 Intro 0:33 Reading images in C 1:27 Resizing the image 2:01 Printing the image 2:14 Coloring 3:56 Highlighting edges 4:32 Final showcase