├── .gitignore ├── README.md ├── data ├── models ├── bvlc_googlenet_deploy.prototxt ├── compcar_front_make │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_front_model │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_front_side_make │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_front_side_model │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_make │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_model │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_rear_make │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_rear_model │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_rear_side_make │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_rear_side_model │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_side_make │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── compcar_side_model │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt └── compcar_type │ ├── deploy.prototxt │ ├── solver.prototxt │ └── train_val.prototxt ├── pics ├── make_result.png └── model_result.png ├── src ├── deep_feature_dictionary.py ├── evaluation.py ├── extract_deep_feature.py ├── joint_bayes.py ├── joint_bayes.pyc ├── train_clf.py └── verification.py ├── third-parties ├── caffe └── xgboost └── tools ├── generate_cropped_image.py ├── generate_label_list.py ├── generate_lmdb.sh ├── generate_verification_image_list.py ├── show_cropped_img_list.py ├── show_img_list.py ├── split_proposals.m └── split_viewpoints.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/README.md -------------------------------------------------------------------------------- /data: -------------------------------------------------------------------------------- 1 | /home/lhy/Documents/Data/CompCars -------------------------------------------------------------------------------- /models/bvlc_googlenet_deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/bvlc_googlenet_deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_front_make/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_make/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_front_make/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_make/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_front_make/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_make/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_front_model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_model/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_front_model/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_model/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_front_model/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_model/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_front_side_make/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_side_make/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_front_side_make/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_side_make/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_front_side_make/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_side_make/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_front_side_model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_side_model/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_front_side_model/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_side_model/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_front_side_model/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_front_side_model/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_make/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_make/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_make/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_make/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_make/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_make/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_model/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_model/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_model/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_model/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_model/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_make/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_make/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_make/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_make/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_make/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_make/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_model/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_model/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_model/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_model/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_model/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_side_make/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_side_make/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_side_make/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_side_make/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_side_make/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_side_make/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_side_model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_side_model/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_side_model/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_side_model/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_rear_side_model/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_rear_side_model/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_side_make/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_side_make/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_side_make/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_side_make/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_side_make/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_side_make/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_side_model/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_side_model/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_side_model/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_side_model/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_side_model/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_side_model/train_val.prototxt -------------------------------------------------------------------------------- /models/compcar_type/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_type/deploy.prototxt -------------------------------------------------------------------------------- /models/compcar_type/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_type/solver.prototxt -------------------------------------------------------------------------------- /models/compcar_type/train_val.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/models/compcar_type/train_val.prototxt -------------------------------------------------------------------------------- /pics/make_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/pics/make_result.png -------------------------------------------------------------------------------- /pics/model_result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/pics/model_result.png -------------------------------------------------------------------------------- /src/deep_feature_dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/deep_feature_dictionary.py -------------------------------------------------------------------------------- /src/evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/evaluation.py -------------------------------------------------------------------------------- /src/extract_deep_feature.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/extract_deep_feature.py -------------------------------------------------------------------------------- /src/joint_bayes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/joint_bayes.py -------------------------------------------------------------------------------- /src/joint_bayes.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/joint_bayes.pyc -------------------------------------------------------------------------------- /src/train_clf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/train_clf.py -------------------------------------------------------------------------------- /src/verification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/src/verification.py -------------------------------------------------------------------------------- /third-parties/caffe: -------------------------------------------------------------------------------- 1 | /home/lhy/Documents/Codes/Libs/caffe/ -------------------------------------------------------------------------------- /third-parties/xgboost: -------------------------------------------------------------------------------- 1 | /home/lhy/Documents/Codes/Libs/xgboost -------------------------------------------------------------------------------- /tools/generate_cropped_image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/generate_cropped_image.py -------------------------------------------------------------------------------- /tools/generate_label_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/generate_label_list.py -------------------------------------------------------------------------------- /tools/generate_lmdb.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/generate_lmdb.sh -------------------------------------------------------------------------------- /tools/generate_verification_image_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/generate_verification_image_list.py -------------------------------------------------------------------------------- /tools/show_cropped_img_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/show_cropped_img_list.py -------------------------------------------------------------------------------- /tools/show_img_list.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/show_img_list.py -------------------------------------------------------------------------------- /tools/split_proposals.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/split_proposals.m -------------------------------------------------------------------------------- /tools/split_viewpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nicklhy/CompCar_Analysis/HEAD/tools/split_viewpoints.py --------------------------------------------------------------------------------