├── README.md ├── Yolo ├── CMakeLists.txt ├── upsample_op.cc ├── upsample_op.cu ├── upsample_op.h ├── yolo_op.cc ├── yolo_op.cu └── yolo_op.h ├── cppDemo ├── boxuitl.h ├── coco.names ├── cppDemo.pro ├── cppDemo.pro.user ├── dog.jpg └── main.cpp ├── data ├── coco.names ├── d.sl ├── dog.jpg ├── eagle.jpg ├── giraffe.jpg ├── horses.jpg ├── person.jpg ├── predictions.jpg ├── scream.jpg └── voc.names ├── demo.py ├── demo1.py ├── modelfile ├── net.pbtxt ├── param_init_net.pbtxt └── predict_net.pb ├── myutils.py └── yolo_layer.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/README.md -------------------------------------------------------------------------------- /Yolo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/CMakeLists.txt -------------------------------------------------------------------------------- /Yolo/upsample_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/upsample_op.cc -------------------------------------------------------------------------------- /Yolo/upsample_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/upsample_op.cu -------------------------------------------------------------------------------- /Yolo/upsample_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/upsample_op.h -------------------------------------------------------------------------------- /Yolo/yolo_op.cc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/yolo_op.cc -------------------------------------------------------------------------------- /Yolo/yolo_op.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/yolo_op.cu -------------------------------------------------------------------------------- /Yolo/yolo_op.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/Yolo/yolo_op.h -------------------------------------------------------------------------------- /cppDemo/boxuitl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/cppDemo/boxuitl.h -------------------------------------------------------------------------------- /cppDemo/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/cppDemo/coco.names -------------------------------------------------------------------------------- /cppDemo/cppDemo.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/cppDemo/cppDemo.pro -------------------------------------------------------------------------------- /cppDemo/cppDemo.pro.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/cppDemo/cppDemo.pro.user -------------------------------------------------------------------------------- /cppDemo/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/cppDemo/dog.jpg -------------------------------------------------------------------------------- /cppDemo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/cppDemo/main.cpp -------------------------------------------------------------------------------- /data/coco.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/coco.names -------------------------------------------------------------------------------- /data/d.sl: -------------------------------------------------------------------------------- 1 | d 2 | -------------------------------------------------------------------------------- /data/dog.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/dog.jpg -------------------------------------------------------------------------------- /data/eagle.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/eagle.jpg -------------------------------------------------------------------------------- /data/giraffe.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/giraffe.jpg -------------------------------------------------------------------------------- /data/horses.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/horses.jpg -------------------------------------------------------------------------------- /data/person.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/person.jpg -------------------------------------------------------------------------------- /data/predictions.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/predictions.jpg -------------------------------------------------------------------------------- /data/scream.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/scream.jpg -------------------------------------------------------------------------------- /data/voc.names: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/data/voc.names -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/demo.py -------------------------------------------------------------------------------- /demo1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/demo1.py -------------------------------------------------------------------------------- /modelfile/net.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/modelfile/net.pbtxt -------------------------------------------------------------------------------- /modelfile/param_init_net.pbtxt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/modelfile/param_init_net.pbtxt -------------------------------------------------------------------------------- /modelfile/predict_net.pb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/modelfile/predict_net.pb -------------------------------------------------------------------------------- /myutils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/myutils.py -------------------------------------------------------------------------------- /yolo_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dongfangduoshou123/Caffe2-yolo-v3/HEAD/yolo_layer.py --------------------------------------------------------------------------------