├── READEME.txt ├── README.md ├── Release ├── UAV-Detect.exe └── UAV-Detect.pdb ├── UAV-Detect.sdf ├── UAV-Detect.sln ├── UAV-Detect.v12.suo └── UAV-Detect ├── DPM ├── auxiliary │ ├── cvPrint.cpp │ ├── getCurrentTime.cpp │ └── yuSaveMat.cpp ├── fastDPM │ ├── FastDPM.cpp │ └── FastDPM.h ├── include │ ├── PM_type.h │ └── pthread.h └── source │ ├── analyze_model.cpp │ ├── apply_rules.cpp │ ├── apply_rules2.cpp │ ├── apply_rules3.cpp │ ├── bboxpred_get.cpp │ ├── bboxpred_input.cpp │ ├── bounded_dt.cpp │ ├── bounded_dt2.cpp │ ├── clipboxes.cpp │ ├── cvPermutate.cpp │ ├── detections_trees2.cpp │ ├── draw_img.cpp │ ├── fconv.cpp │ ├── featpyramid.cpp │ ├── featpyramid2.cpp │ ├── features.cpp │ ├── features14_2.cpp │ ├── flipfeat.cpp │ ├── get_score_size.cpp │ ├── loadPyramid.cpp │ ├── load_model.cpp │ ├── loc_feat.cpp │ ├── model_get_block.cpp │ ├── nms.cpp │ ├── pDollar_nms.cpp │ ├── parse_detections.cpp │ ├── reduceboxes.cpp │ ├── sum_score.cpp │ ├── yuInd2Sub.cpp │ └── yuStdDirFiles.cpp ├── KCF ├── include │ ├── boxextractor.h │ ├── dirent.h │ ├── ffttools.hpp │ ├── fhog.hpp │ ├── kcftracker.hpp │ ├── labdata.hpp │ ├── recttools.hpp │ └── tracker.h └── source │ ├── boxextractor.cpp │ ├── fhog.cpp │ └── kcftracker.cpp ├── Release ├── FastDPM.obj ├── UAV-Detect.log ├── UAV-Detect.tlog │ ├── CL.read.1.tlog │ ├── CL.write.1.tlog │ ├── UAV-Detect.lastbuildstate │ ├── cl.command.1.tlog │ ├── link.command.1.tlog │ ├── link.read.1.tlog │ └── link.write.1.tlog ├── UAVtest.obj ├── analyze_model.obj ├── apply_rules.obj ├── apply_rules2.obj ├── apply_rules3.obj ├── bboxpred_get.obj ├── bboxpred_input.obj ├── bounded_dt.obj ├── bounded_dt2.obj ├── boxextractor.obj ├── clipboxes.obj ├── cvPermutate.obj ├── cvPrint.obj ├── detections_trees2.obj ├── draw_img.obj ├── fconv.obj ├── featpyramid.obj ├── featpyramid2.obj ├── features.obj ├── features14_2.obj ├── fhog.obj ├── flipfeat.obj ├── getCurrentTime.obj ├── get_score_size.obj ├── kcftracker.obj ├── loadPyramid.obj ├── load_model.obj ├── loc_feat.obj ├── model_get_block.obj ├── nms.obj ├── pDollar_nms.obj ├── parse_detections.obj ├── reduceboxes.obj ├── sum_score.obj ├── vc120.pdb ├── yuInd2Sub.obj ├── yuSaveMat.obj └── yuStdDirFiles.obj ├── UAV-Detect.vcxproj ├── UAV-Detect.vcxproj.filters ├── UAV-Detect.vcxproj.user ├── UAV_2.txt ├── UAVtest.cpp ├── bicycle.txt ├── data ├── 000084.jpg ├── 1.flv ├── 1.png ├── 2.avi ├── dpm.jpg └── test1.flv ├── model.txt ├── model_inriaperson.txt ├── output.txt ├── pthreadVC2.dll └── uav_data ├── 1.avi ├── 2.avi ├── 3.avi ├── 4.avi ├── 5.avi ├── 6.avi ├── uav_1.avi └── uav_2.avi /READEME.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/READEME.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/README.md -------------------------------------------------------------------------------- /Release/UAV-Detect.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/Release/UAV-Detect.exe -------------------------------------------------------------------------------- /Release/UAV-Detect.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/Release/UAV-Detect.pdb -------------------------------------------------------------------------------- /UAV-Detect.sdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect.sdf -------------------------------------------------------------------------------- /UAV-Detect.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect.sln -------------------------------------------------------------------------------- /UAV-Detect.v12.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect.v12.suo -------------------------------------------------------------------------------- /UAV-Detect/DPM/auxiliary/cvPrint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/auxiliary/cvPrint.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/auxiliary/getCurrentTime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/auxiliary/getCurrentTime.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/auxiliary/yuSaveMat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/auxiliary/yuSaveMat.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/fastDPM/FastDPM.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/fastDPM/FastDPM.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/fastDPM/FastDPM.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/fastDPM/FastDPM.h -------------------------------------------------------------------------------- /UAV-Detect/DPM/include/PM_type.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/include/PM_type.h -------------------------------------------------------------------------------- /UAV-Detect/DPM/include/pthread.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/include/pthread.h -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/analyze_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/analyze_model.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/apply_rules.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/apply_rules.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/apply_rules2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/apply_rules2.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/apply_rules3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/apply_rules3.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/bboxpred_get.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/bboxpred_get.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/bboxpred_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/bboxpred_input.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/bounded_dt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/bounded_dt.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/bounded_dt2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/bounded_dt2.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/clipboxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/clipboxes.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/cvPermutate.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/cvPermutate.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/detections_trees2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/detections_trees2.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/draw_img.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/draw_img.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/fconv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/fconv.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/featpyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/featpyramid.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/featpyramid2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/featpyramid2.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/features.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/features.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/features14_2.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/features14_2.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/flipfeat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/flipfeat.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/get_score_size.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/get_score_size.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/loadPyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/loadPyramid.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/load_model.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/load_model.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/loc_feat.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/loc_feat.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/model_get_block.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/model_get_block.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/nms.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/pDollar_nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/pDollar_nms.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/parse_detections.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/parse_detections.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/reduceboxes.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/reduceboxes.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/sum_score.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/sum_score.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/yuInd2Sub.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/yuInd2Sub.cpp -------------------------------------------------------------------------------- /UAV-Detect/DPM/source/yuStdDirFiles.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/DPM/source/yuStdDirFiles.cpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/boxextractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/boxextractor.h -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/dirent.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/dirent.h -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/ffttools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/ffttools.hpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/fhog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/fhog.hpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/kcftracker.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/kcftracker.hpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/labdata.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/labdata.hpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/recttools.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/recttools.hpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/include/tracker.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/include/tracker.h -------------------------------------------------------------------------------- /UAV-Detect/KCF/source/boxextractor.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/source/boxextractor.cpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/source/fhog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/source/fhog.cpp -------------------------------------------------------------------------------- /UAV-Detect/KCF/source/kcftracker.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/KCF/source/kcftracker.cpp -------------------------------------------------------------------------------- /UAV-Detect/Release/FastDPM.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/FastDPM.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.log -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/CL.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/CL.read.1.tlog -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/CL.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/CL.write.1.tlog -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/UAV-Detect.lastbuildstate: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/UAV-Detect.lastbuildstate -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/cl.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/cl.command.1.tlog -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/link.command.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/link.command.1.tlog -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/link.read.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/link.read.1.tlog -------------------------------------------------------------------------------- /UAV-Detect/Release/UAV-Detect.tlog/link.write.1.tlog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAV-Detect.tlog/link.write.1.tlog -------------------------------------------------------------------------------- /UAV-Detect/Release/UAVtest.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/UAVtest.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/analyze_model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/analyze_model.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/apply_rules.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/apply_rules.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/apply_rules2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/apply_rules2.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/apply_rules3.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/apply_rules3.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/bboxpred_get.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/bboxpred_get.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/bboxpred_input.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/bboxpred_input.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/bounded_dt.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/bounded_dt.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/bounded_dt2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/bounded_dt2.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/boxextractor.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/boxextractor.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/clipboxes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/clipboxes.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/cvPermutate.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/cvPermutate.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/cvPrint.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/cvPrint.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/detections_trees2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/detections_trees2.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/draw_img.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/draw_img.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/fconv.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/fconv.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/featpyramid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/featpyramid.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/featpyramid2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/featpyramid2.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/features.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/features.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/features14_2.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/features14_2.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/fhog.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/fhog.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/flipfeat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/flipfeat.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/getCurrentTime.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/getCurrentTime.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/get_score_size.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/get_score_size.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/kcftracker.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/kcftracker.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/loadPyramid.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/loadPyramid.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/load_model.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/load_model.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/loc_feat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/loc_feat.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/model_get_block.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/model_get_block.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/nms.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/nms.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/pDollar_nms.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/pDollar_nms.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/parse_detections.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/parse_detections.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/reduceboxes.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/reduceboxes.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/sum_score.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/sum_score.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/vc120.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/vc120.pdb -------------------------------------------------------------------------------- /UAV-Detect/Release/yuInd2Sub.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/yuInd2Sub.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/yuSaveMat.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/yuSaveMat.obj -------------------------------------------------------------------------------- /UAV-Detect/Release/yuStdDirFiles.obj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/Release/yuStdDirFiles.obj -------------------------------------------------------------------------------- /UAV-Detect/UAV-Detect.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/UAV-Detect.vcxproj -------------------------------------------------------------------------------- /UAV-Detect/UAV-Detect.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/UAV-Detect.vcxproj.filters -------------------------------------------------------------------------------- /UAV-Detect/UAV-Detect.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/UAV-Detect.vcxproj.user -------------------------------------------------------------------------------- /UAV-Detect/UAV_2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/UAV_2.txt -------------------------------------------------------------------------------- /UAV-Detect/UAVtest.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/UAVtest.cpp -------------------------------------------------------------------------------- /UAV-Detect/bicycle.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/bicycle.txt -------------------------------------------------------------------------------- /UAV-Detect/data/000084.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/data/000084.jpg -------------------------------------------------------------------------------- /UAV-Detect/data/1.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/data/1.flv -------------------------------------------------------------------------------- /UAV-Detect/data/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/data/1.png -------------------------------------------------------------------------------- /UAV-Detect/data/2.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/data/2.avi -------------------------------------------------------------------------------- /UAV-Detect/data/dpm.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/data/dpm.jpg -------------------------------------------------------------------------------- /UAV-Detect/data/test1.flv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/data/test1.flv -------------------------------------------------------------------------------- /UAV-Detect/model.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/model.txt -------------------------------------------------------------------------------- /UAV-Detect/model_inriaperson.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/model_inriaperson.txt -------------------------------------------------------------------------------- /UAV-Detect/output.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/output.txt -------------------------------------------------------------------------------- /UAV-Detect/pthreadVC2.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/pthreadVC2.dll -------------------------------------------------------------------------------- /UAV-Detect/uav_data/1.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/1.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/2.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/2.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/3.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/3.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/4.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/4.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/5.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/5.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/6.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/6.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/uav_1.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/uav_1.avi -------------------------------------------------------------------------------- /UAV-Detect/uav_data/uav_2.avi: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aiesst/UAV-Detect/HEAD/UAV-Detect/uav_data/uav_2.avi --------------------------------------------------------------------------------