├── README.md ├── data ├── README.md ├── create_data.sh ├── create_list.sh ├── labelmap_kitti.prototxt ├── test.txt ├── test2.jpg ├── test_name_size.txt └── trainval.txt ├── index.png ├── jobs └── VGGNet │ └── KITTI │ └── SSD_414x125 │ ├── VGG_KITTI_SSD_414x125.log │ ├── VGG_KITTI_SSD_414x125.sh │ ├── deploy.prototxt │ ├── solver.prototxt │ ├── test.prototxt │ ├── train.prototxt │ └── train_ssd_kitti.py ├── models └── VGGNet │ ├── KITTI │ └── SSD_414x125 │ │ ├── deploy.prototxt │ │ ├── solver.prototxt │ │ ├── test.prototxt │ │ └── train.prototxt │ └── place-vgg-v2-caffemodel-here ├── ssd_detection.py └── train_ssd_kitti.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/README.md -------------------------------------------------------------------------------- /data/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/README.md -------------------------------------------------------------------------------- /data/create_data.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/create_data.sh -------------------------------------------------------------------------------- /data/create_list.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/create_list.sh -------------------------------------------------------------------------------- /data/labelmap_kitti.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/labelmap_kitti.prototxt -------------------------------------------------------------------------------- /data/test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/test.txt -------------------------------------------------------------------------------- /data/test2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/test2.jpg -------------------------------------------------------------------------------- /data/test_name_size.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/test_name_size.txt -------------------------------------------------------------------------------- /data/trainval.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/data/trainval.txt -------------------------------------------------------------------------------- /index.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/index.png -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/VGG_KITTI_SSD_414x125.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/VGG_KITTI_SSD_414x125.log -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/VGG_KITTI_SSD_414x125.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/VGG_KITTI_SSD_414x125.sh -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/deploy.prototxt -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/solver.prototxt -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/test.prototxt -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/train.prototxt -------------------------------------------------------------------------------- /jobs/VGGNet/KITTI/SSD_414x125/train_ssd_kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/jobs/VGGNet/KITTI/SSD_414x125/train_ssd_kitti.py -------------------------------------------------------------------------------- /models/VGGNet/KITTI/SSD_414x125/deploy.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/models/VGGNet/KITTI/SSD_414x125/deploy.prototxt -------------------------------------------------------------------------------- /models/VGGNet/KITTI/SSD_414x125/solver.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/models/VGGNet/KITTI/SSD_414x125/solver.prototxt -------------------------------------------------------------------------------- /models/VGGNet/KITTI/SSD_414x125/test.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/models/VGGNet/KITTI/SSD_414x125/test.prototxt -------------------------------------------------------------------------------- /models/VGGNet/KITTI/SSD_414x125/train.prototxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/models/VGGNet/KITTI/SSD_414x125/train.prototxt -------------------------------------------------------------------------------- /models/VGGNet/place-vgg-v2-caffemodel-here: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ssd_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/ssd_detection.py -------------------------------------------------------------------------------- /train_ssd_kitti.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lucasjinreal/kitti-ssd/HEAD/train_ssd_kitti.py --------------------------------------------------------------------------------