Due to the recent use of ICF,DPM and other new pedestrian detection algorithm, found the Open Source Library CCV http://libccv.org/tutorial/, but the code is under the Linux platform, the company machine does not allow itself to install dual systems, the use of visual box+ Ubuntu for implementation, the specific implementation steps are as follows:
First, install the Visualbox+ubuntu
1 Downloads Visualbox https://www.virtualbox.org/
2 download ubuntu http://www.ubuntu.com/download, download a consistent version of your CPU bits to avoid unnecessary errors
3 Remember to turn on CPU virtual support in the BIOS, if you have Windows Hyperv remote service, need to shut down
4 after installing the Visualbox, new, select the corresponding version, all the way by default. Then find the storage option in the settings and add the downloaded Ubuntu*.iso in the Controlide
5 Boot to install
Second, Ubuntu file sharing in Windows and Visualbox
1 Locate the shared folder in the Visualbox settings, select a folder as a shared folder, such as select a folder named Share
2 mkdir A new file under Ubuntu, such as mkdir SHAREVM under/home
3 command: sudo mount-t vboxsf SHARE/HOME/SHAREVM can be shared
Third, installation CCV
1 git clone https://github.com/liuliu/ccv.git
2 git checkout stable # switch to stable branch
3 Downloading some dependent libraries
sudo apt-get install clang libjpeg-dev libpng-dev libfftw3-dev libgsl0-dev libblas-dev liblinear-dev Libblas-dev
4 cd Lib
./configure Force
5 CD. /bin
Make
6 You can see a lot of executable files in the bin after make is finished.
Iv. using ICF DPM for pedestrian detection
Icf:
./icfdetect <Your Image contains Pedestrians> ../samples/pedestrian.icf | ./icfdraw.rb <Your Image contains Pedestrians> output.png
DPM:
./dpmdetect <Your Image contains Pedestrians> ../samples/pedestrian.m | ./dpmdraw.rb <Your Image contains Pedestrians> output.png
refer to the documentation or the following URL for detailed useicf:http://libccv.org/doc/doc-icf/dpm:http://libccv.org/doc/doc-dpm/
Pedestrian detection algorithm (ICF DPM) &CCV (A Morden computer Vision Library) using Ubuntu under &visualbox