📅 2014-Jan-23 ⬩ ✍️ Ashwin Nanjappa ⬩ 🏷️ cuda, fasthog, fltk, freeimage, hog, xinerama ⬩ 📚 Archive
FastHOG is a Histogram of Oriented Gradients (HOG) library that uses CUDA to compute on the GPU. The original source code can be obtained here. However, this code cannot be compiled with recent CUDA SDKs. I’ve made the changes needed to compile it and shared the code here.
To build and install this FastHOG in a few steps:
Install 5.5 or a more recent version of CUDA. Instructions can be found here.
Install Xinerama and FreeImage libraries:
$ sudo apt install libxinerama-dev libfreeimage-dev
Build and install the 2.0 branch of FLTK. This is an abandoned branch of the library and instructions to build it can be found here. Note that FastHOG will not compile with the current 1.x branch of FLTK.
Clone the fixed source code of FastHOG, build it and test whether it works:
$ git clone https://github.com/ashwin/fasthog.git
$ cd fasthog/source/fastHOG
$ make
$ bin/release/fastHOG
The test program displays an image of pedestrians. Click anywhere on it and the detected people will be drawn in red boxes.
Tried with: CUDA 5.5 and Ubuntu 12.04