├── .gitignore ├── LICENSE ├── README.md ├── clean.py ├── figure └── keypoint.jpg ├── keypoint_test.txt ├── keypoint_train.txt └── split.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/README.md -------------------------------------------------------------------------------- /clean.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/clean.py -------------------------------------------------------------------------------- /figure/keypoint.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/figure/keypoint.jpg -------------------------------------------------------------------------------- /keypoint_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/keypoint_test.txt -------------------------------------------------------------------------------- /keypoint_train.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/keypoint_train.txt -------------------------------------------------------------------------------- /split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Zhongdao/VehicleReIDKeyPointData/HEAD/split.py --------------------------------------------------------------------------------