├── .gitattributes ├── .gitignore ├── .gitmodules ├── Data ├── video1.avi └── video2.avi ├── Debug └── zlibd1.dll ├── README.md ├── Release └── zlib1.dll ├── VehicleDetection.sln ├── VehicleDetection ├── VehicleDetection.cpp ├── VehicleDetection.vcxproj ├── VehicleDetection.vcxproj.filters ├── packages.config ├── stdafx.cpp ├── stdafx.h └── targetver.h └── x64 ├── Debug └── zlibd1.dll └── Release └── zlib1.dll /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/.gitmodules -------------------------------------------------------------------------------- /Data/video1.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/Data/video1.avi -------------------------------------------------------------------------------- /Data/video2.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/Data/video2.avi -------------------------------------------------------------------------------- /Debug/zlibd1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/Debug/zlibd1.dll -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/README.md -------------------------------------------------------------------------------- /Release/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/Release/zlib1.dll -------------------------------------------------------------------------------- /VehicleDetection.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection.sln -------------------------------------------------------------------------------- /VehicleDetection/VehicleDetection.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/VehicleDetection.cpp -------------------------------------------------------------------------------- /VehicleDetection/VehicleDetection.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/VehicleDetection.vcxproj -------------------------------------------------------------------------------- /VehicleDetection/VehicleDetection.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/VehicleDetection.vcxproj.filters -------------------------------------------------------------------------------- /VehicleDetection/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/packages.config -------------------------------------------------------------------------------- /VehicleDetection/stdafx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/stdafx.cpp -------------------------------------------------------------------------------- /VehicleDetection/stdafx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/stdafx.h -------------------------------------------------------------------------------- /VehicleDetection/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/VehicleDetection/targetver.h -------------------------------------------------------------------------------- /x64/Debug/zlibd1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/x64/Debug/zlibd1.dll -------------------------------------------------------------------------------- /x64/Release/zlib1.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/xfgryujk/VehicleDetection/HEAD/x64/Release/zlib1.dll --------------------------------------------------------------------------------