Grayskull: A tiny computer vision library in C for embedded systems, etc.
11–19 of 19 posts
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#12Did you see the "By The Power of Grayscale" submission and go digging?
Yes, that's exactly how I discovered it :-)
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#13I would add the support if I needed the library, but I don't, at least not yet.
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#14I basically did the same thing a few weeks ago! =) => https://flatcv.ad-si.com It will be interesting to see what you did differently!
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#15Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#16Hey, this is great :) I attempted to do something similar a while back https://github.com/aadv1k/deimos basically trying to build many of OpenCV's functions from scratch in C from first principles, though I was using stb for handling the images. I ended up putting the project on hold, primarily because I lost interest in computer vision at the time. For a while I went deep into OCR, and built a rather rudimentary str…
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#17I basically did the same thing a few weeks ago! =) => https://flatcv.ad-si.com It will be interesting to see what you did differently!
Nice. Any plans to add support for affine transformations and perspective transformation (warp)?
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#18Hey, this is great :) I attempted to do something similar a while back https://github.com/aadv1k/deimos basically trying to build many of OpenCV's functions from scratch in C from first principles, though I was using stb for handling the images. I ended up putting the project on hold, primarily because I lost interest in computer vision at the time. For a while I went deep into OCR, and built a rather rudimentary str…
Computer Vision: Algorithms and Applications 2nd Edition is free to download for personal use at https://szeliski.org/Book/
Re: Grayskull: A tiny computer vision library in C for embedded systems, etc.
#19Hey, this is great :) I attempted to do something similar a while back https://github.com/aadv1k/deimos basically trying to build many of OpenCV's functions from scratch in C from first principles, though I was using stb for handling the images. I ended up putting the project on hold, primarily because I lost interest in computer vision at the time. For a while I went deep into OCR, and built a rather rudimentary str…
https://github.com/spsingh37/Classical-computer-vision spend some time to understand how CV worked before deep learning transformed it in 2012->2014. lots of those techniques are still useful