Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
The instructions basicly tell you how to how to set things up the way I had it when I wrote/tested this code:
Step 1:
The following API requires openCV. Follow the instructions provided on openCV will guide you through the installation on
windows.
http://docs.opencv.org/doc/tutorials/introduction/windows_install/windows_install.html#windows-installation
Step 2:
Once installed you can start a new Visual Studio Project. Create the necessary property files and use them to link the library.
http://docs.opencv.org/doc/tutorials/introduction/windows_visual_studio_Opencv/windows_visual_studio_Opencv.html#windows-visual-studio-how-to
Step 3:
Once the project is created you need to copy the following source and header files into your project folder & project explorer to be able to use the methods. Things marked under source and header would go in the respective folder in the project explorer.
Note: Files marked with (*) are the required files if you want to use the API. Everything else is extra...
Source
------------------------
AdaptiveMedianBGS.cpp (*)
DPAdaptiveMedianBGS.cpp (*)
FrameDifferenceBGS.cpp (*)
Image.cpp (*)
sqlite3.c (*)
main.cpp
proxy.cpp
runWrapper.cpp
carCounter.cpp (*)
Header
------------------------
AdaptiveMedianBGS.h (*)
DPAdaptiveMedianBGS.h (*)
FrameDifferenceBGS.h (*)
Image.h (*)
sqlite3.h (*)
main.h
proxy.h
runWrapper.h
carCounter.h (*)
Bgs.h (*)
BgsParams.h (*)
IBGS.h (*)