YOLO
Yolo, a great library my Colleague (Ashkan) and I have found for detecting objects. YOLO stands for Y ou O nly L ook O nce, and its a deep learning computer vision library [1]. The code base is on C (not C++) and it has GPU support. These features along with the availability of designing new layers make it awesome. But the most significant feature of this library is its speed in detecting objects in real life. The default network on this project is trained to detect variety range of objects. However, the library has a huge disadvantage. It's written in C, which makes it hard to further developments. Although, there is C++ wrapper for it in [2], but the library isn't satisfying. I am still try it to fit it in my program, but after a week no progress has been attained yet... I planed to rewrite the wrapper (and in worst case the library itself) to see if I am able to 1) compile it under c++ and integrate it in my program. and 2) to see if can improve it even faster. The Y