├── .gitignore ├── CMakeLists.txt ├── INSTALL.txt ├── LICENSE ├── README.md ├── config └── voc_config.xml ├── data └── 00002.jpg ├── external └── RapidXML │ ├── rapidxml.hpp │ ├── rapidxml_iterators.hpp │ ├── rapidxml_print.hpp │ └── rapidxml_utils.hpp ├── matlab ├── car_eval.m ├── convertVOCR5.m ├── pascal_eval.m └── voc_config.m ├── preTrainedModel ├── ReadMe ├── car │ ├── kitti │ │ ├── car_aog_final.bin │ │ ├── car_aog_final.mat │ │ └── car_aog_final.pdf │ ├── parking_lot │ │ ├── car_aog_final.bin │ │ ├── car_aog_final.pdf │ │ ├── car_dpm_final.bin │ │ └── car_dpm_final.pdf │ ├── pascal_voc2007 │ │ ├── car_2007.pdf │ │ └── car_aog_final.bin │ └── street_parking │ │ ├── car_aog_final.bin │ │ ├── car_aog_final.mat │ │ └── car_aog_final.pdf └── voc2007_RGM │ ├── bicycle_2007.pdf │ ├── bicycle_final.bin │ ├── car_2007.pdf │ └── car_final.bin └── src ├── core ├── AOGrammar.cpp ├── AOGrammar.cpp.save ├── AOGrammar.hpp ├── AOGrammar.hpp.save ├── CommandLine.cpp ├── CommandLine.cpp.save ├── CommandLine.hpp ├── Common.hpp ├── Common.hpp.save ├── Data.cpp ├── Data.cpp.save ├── Data.hpp ├── Data.hpp.save ├── Environment.cpp ├── Environment.cpp.save ├── Environment.hpp ├── Environment.hpp.save ├── FeaturePyramid.cpp ├── FeaturePyramid.cpp.save ├── FeaturePyramid.hpp ├── FeaturePyramid.hpp.save ├── Inference.cpp ├── Inference.cpp.save ├── Inference.hpp ├── Inference.hpp.save ├── Parameters.cpp ├── Parameters.cpp.save ├── Parameters.hpp ├── Parameters.hpp.save ├── ParseTree.cpp ├── ParseTree.cpp.save ├── ParseTree.hpp ├── ParseTree.hpp.save ├── Patchwork.cpp ├── Patchwork.cpp.save ├── Patchwork.hpp ├── Rectangle.cpp ├── Rectangle.cpp.save ├── Rectangle.hpp ├── Rectangle.hpp.save ├── Timer.cpp ├── Timer.cpp.save ├── Timer.hpp ├── Timer.hpp.save ├── UtilFile.cpp ├── UtilFile.hpp ├── UtilGeneric.cpp ├── UtilGeneric.cpp.save ├── UtilGeneric.hpp ├── UtilGeneric.hpp.save ├── UtilLog.cpp ├── UtilLog.hpp ├── UtilMath.cpp ├── UtilMath.cpp.save ├── UtilMath.hpp ├── UtilOpencv.cpp ├── UtilOpencv.hpp ├── UtilSerialization.hpp ├── UtilSerialization.hpp.save ├── UtilString.cpp ├── UtilString.cpp.save ├── UtilString.hpp ├── UtilString.hpp.save ├── UtilityFile.cpp.save ├── UtilityFile.hpp.save ├── VOCConfig.cpp ├── VOCConfig.cpp.save ├── VOCConfig.hpp ├── VOCData.cpp ├── VOCData.cpp.save ├── VOCData.hpp ├── VOCData.hpp.save ├── VOCEvaluation.cpp ├── VOCEvaluation.cpp.save ├── VOCEvaluation.hpp ├── VOCEvaluation.hpp.save ├── XMLReader.cpp ├── XMLReader.cpp.save ├── XMLReader.hpp └── XMLReader.hpp.save └── main ├── Entry.cpp └── Entry.cpp.save /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/.gitignore -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /INSTALL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/INSTALL.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/README.md -------------------------------------------------------------------------------- /config/voc_config.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/config/voc_config.xml -------------------------------------------------------------------------------- /data/00002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/data/00002.jpg -------------------------------------------------------------------------------- /external/RapidXML/rapidxml.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/external/RapidXML/rapidxml.hpp -------------------------------------------------------------------------------- /external/RapidXML/rapidxml_iterators.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/external/RapidXML/rapidxml_iterators.hpp -------------------------------------------------------------------------------- /external/RapidXML/rapidxml_print.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/external/RapidXML/rapidxml_print.hpp -------------------------------------------------------------------------------- /external/RapidXML/rapidxml_utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/external/RapidXML/rapidxml_utils.hpp -------------------------------------------------------------------------------- /matlab/car_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/matlab/car_eval.m -------------------------------------------------------------------------------- /matlab/convertVOCR5.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/matlab/convertVOCR5.m -------------------------------------------------------------------------------- /matlab/pascal_eval.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/matlab/pascal_eval.m -------------------------------------------------------------------------------- /matlab/voc_config.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/matlab/voc_config.m -------------------------------------------------------------------------------- /preTrainedModel/ReadMe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/ReadMe -------------------------------------------------------------------------------- /preTrainedModel/car/kitti/car_aog_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/kitti/car_aog_final.bin -------------------------------------------------------------------------------- /preTrainedModel/car/kitti/car_aog_final.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/kitti/car_aog_final.mat -------------------------------------------------------------------------------- /preTrainedModel/car/kitti/car_aog_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/kitti/car_aog_final.pdf -------------------------------------------------------------------------------- /preTrainedModel/car/parking_lot/car_aog_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/parking_lot/car_aog_final.bin -------------------------------------------------------------------------------- /preTrainedModel/car/parking_lot/car_aog_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/parking_lot/car_aog_final.pdf -------------------------------------------------------------------------------- /preTrainedModel/car/parking_lot/car_dpm_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/parking_lot/car_dpm_final.bin -------------------------------------------------------------------------------- /preTrainedModel/car/parking_lot/car_dpm_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/parking_lot/car_dpm_final.pdf -------------------------------------------------------------------------------- /preTrainedModel/car/pascal_voc2007/car_2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/pascal_voc2007/car_2007.pdf -------------------------------------------------------------------------------- /preTrainedModel/car/pascal_voc2007/car_aog_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/pascal_voc2007/car_aog_final.bin -------------------------------------------------------------------------------- /preTrainedModel/car/street_parking/car_aog_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/street_parking/car_aog_final.bin -------------------------------------------------------------------------------- /preTrainedModel/car/street_parking/car_aog_final.mat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/street_parking/car_aog_final.mat -------------------------------------------------------------------------------- /preTrainedModel/car/street_parking/car_aog_final.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/car/street_parking/car_aog_final.pdf -------------------------------------------------------------------------------- /preTrainedModel/voc2007_RGM/bicycle_2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/voc2007_RGM/bicycle_2007.pdf -------------------------------------------------------------------------------- /preTrainedModel/voc2007_RGM/bicycle_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/voc2007_RGM/bicycle_final.bin -------------------------------------------------------------------------------- /preTrainedModel/voc2007_RGM/car_2007.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/voc2007_RGM/car_2007.pdf -------------------------------------------------------------------------------- /preTrainedModel/voc2007_RGM/car_final.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/preTrainedModel/voc2007_RGM/car_final.bin -------------------------------------------------------------------------------- /src/core/AOGrammar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/AOGrammar.cpp -------------------------------------------------------------------------------- /src/core/AOGrammar.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/AOGrammar.cpp.save -------------------------------------------------------------------------------- /src/core/AOGrammar.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/AOGrammar.hpp -------------------------------------------------------------------------------- /src/core/AOGrammar.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/AOGrammar.hpp.save -------------------------------------------------------------------------------- /src/core/CommandLine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/CommandLine.cpp -------------------------------------------------------------------------------- /src/core/CommandLine.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/CommandLine.cpp.save -------------------------------------------------------------------------------- /src/core/CommandLine.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/CommandLine.hpp -------------------------------------------------------------------------------- /src/core/Common.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Common.hpp -------------------------------------------------------------------------------- /src/core/Common.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Common.hpp.save -------------------------------------------------------------------------------- /src/core/Data.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Data.cpp -------------------------------------------------------------------------------- /src/core/Data.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Data.cpp.save -------------------------------------------------------------------------------- /src/core/Data.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Data.hpp -------------------------------------------------------------------------------- /src/core/Data.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Data.hpp.save -------------------------------------------------------------------------------- /src/core/Environment.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Environment.cpp -------------------------------------------------------------------------------- /src/core/Environment.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Environment.cpp.save -------------------------------------------------------------------------------- /src/core/Environment.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Environment.hpp -------------------------------------------------------------------------------- /src/core/Environment.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Environment.hpp.save -------------------------------------------------------------------------------- /src/core/FeaturePyramid.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/FeaturePyramid.cpp -------------------------------------------------------------------------------- /src/core/FeaturePyramid.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/FeaturePyramid.cpp.save -------------------------------------------------------------------------------- /src/core/FeaturePyramid.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/FeaturePyramid.hpp -------------------------------------------------------------------------------- /src/core/FeaturePyramid.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/FeaturePyramid.hpp.save -------------------------------------------------------------------------------- /src/core/Inference.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Inference.cpp -------------------------------------------------------------------------------- /src/core/Inference.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Inference.cpp.save -------------------------------------------------------------------------------- /src/core/Inference.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Inference.hpp -------------------------------------------------------------------------------- /src/core/Inference.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Inference.hpp.save -------------------------------------------------------------------------------- /src/core/Parameters.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Parameters.cpp -------------------------------------------------------------------------------- /src/core/Parameters.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Parameters.cpp.save -------------------------------------------------------------------------------- /src/core/Parameters.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Parameters.hpp -------------------------------------------------------------------------------- /src/core/Parameters.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Parameters.hpp.save -------------------------------------------------------------------------------- /src/core/ParseTree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/ParseTree.cpp -------------------------------------------------------------------------------- /src/core/ParseTree.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/ParseTree.cpp.save -------------------------------------------------------------------------------- /src/core/ParseTree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/ParseTree.hpp -------------------------------------------------------------------------------- /src/core/ParseTree.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/ParseTree.hpp.save -------------------------------------------------------------------------------- /src/core/Patchwork.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Patchwork.cpp -------------------------------------------------------------------------------- /src/core/Patchwork.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Patchwork.cpp.save -------------------------------------------------------------------------------- /src/core/Patchwork.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Patchwork.hpp -------------------------------------------------------------------------------- /src/core/Rectangle.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Rectangle.cpp -------------------------------------------------------------------------------- /src/core/Rectangle.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Rectangle.cpp.save -------------------------------------------------------------------------------- /src/core/Rectangle.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Rectangle.hpp -------------------------------------------------------------------------------- /src/core/Rectangle.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Rectangle.hpp.save -------------------------------------------------------------------------------- /src/core/Timer.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Timer.cpp -------------------------------------------------------------------------------- /src/core/Timer.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Timer.cpp.save -------------------------------------------------------------------------------- /src/core/Timer.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Timer.hpp -------------------------------------------------------------------------------- /src/core/Timer.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/Timer.hpp.save -------------------------------------------------------------------------------- /src/core/UtilFile.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilFile.cpp -------------------------------------------------------------------------------- /src/core/UtilFile.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilFile.hpp -------------------------------------------------------------------------------- /src/core/UtilGeneric.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilGeneric.cpp -------------------------------------------------------------------------------- /src/core/UtilGeneric.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilGeneric.cpp.save -------------------------------------------------------------------------------- /src/core/UtilGeneric.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilGeneric.hpp -------------------------------------------------------------------------------- /src/core/UtilGeneric.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilGeneric.hpp.save -------------------------------------------------------------------------------- /src/core/UtilLog.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilLog.cpp -------------------------------------------------------------------------------- /src/core/UtilLog.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilLog.hpp -------------------------------------------------------------------------------- /src/core/UtilMath.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilMath.cpp -------------------------------------------------------------------------------- /src/core/UtilMath.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilMath.cpp.save -------------------------------------------------------------------------------- /src/core/UtilMath.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilMath.hpp -------------------------------------------------------------------------------- /src/core/UtilOpencv.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilOpencv.cpp -------------------------------------------------------------------------------- /src/core/UtilOpencv.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilOpencv.hpp -------------------------------------------------------------------------------- /src/core/UtilSerialization.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilSerialization.hpp -------------------------------------------------------------------------------- /src/core/UtilSerialization.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilSerialization.hpp.save -------------------------------------------------------------------------------- /src/core/UtilString.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilString.cpp -------------------------------------------------------------------------------- /src/core/UtilString.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilString.cpp.save -------------------------------------------------------------------------------- /src/core/UtilString.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilString.hpp -------------------------------------------------------------------------------- /src/core/UtilString.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilString.hpp.save -------------------------------------------------------------------------------- /src/core/UtilityFile.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilityFile.cpp.save -------------------------------------------------------------------------------- /src/core/UtilityFile.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/UtilityFile.hpp.save -------------------------------------------------------------------------------- /src/core/VOCConfig.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCConfig.cpp -------------------------------------------------------------------------------- /src/core/VOCConfig.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCConfig.cpp.save -------------------------------------------------------------------------------- /src/core/VOCConfig.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCConfig.hpp -------------------------------------------------------------------------------- /src/core/VOCData.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCData.cpp -------------------------------------------------------------------------------- /src/core/VOCData.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCData.cpp.save -------------------------------------------------------------------------------- /src/core/VOCData.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCData.hpp -------------------------------------------------------------------------------- /src/core/VOCData.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCData.hpp.save -------------------------------------------------------------------------------- /src/core/VOCEvaluation.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCEvaluation.cpp -------------------------------------------------------------------------------- /src/core/VOCEvaluation.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCEvaluation.cpp.save -------------------------------------------------------------------------------- /src/core/VOCEvaluation.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCEvaluation.hpp -------------------------------------------------------------------------------- /src/core/VOCEvaluation.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/VOCEvaluation.hpp.save -------------------------------------------------------------------------------- /src/core/XMLReader.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/XMLReader.cpp -------------------------------------------------------------------------------- /src/core/XMLReader.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/XMLReader.cpp.save -------------------------------------------------------------------------------- /src/core/XMLReader.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/XMLReader.hpp -------------------------------------------------------------------------------- /src/core/XMLReader.hpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/core/XMLReader.hpp.save -------------------------------------------------------------------------------- /src/main/Entry.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/main/Entry.cpp -------------------------------------------------------------------------------- /src/main/Entry.cpp.save: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tfwu/AOGDetector/HEAD/src/main/Entry.cpp.save --------------------------------------------------------------------------------