- What I add in this version of caffe?
- detection lmdb, mask lmdb, keypoint lmdb prepare
- yolo v2 (RegionLossLayer) and v3 (YoloLossLayer) are supported
- yolo combined with maskrcnn
- Compile it
cd caffe-maskyolo
cp Makefile.config.example Makefile.config
make -j
support to use yolo v2 or v3 to detect objects in images
cd ROOT
sh ./maskyolo/scripts/convert_detection.sh #generate lmdb for detection
cd ./maskyolo/models/mobilenetv2-yolo/
nohup sh yolo_train.sh > train.log &
tail -f train.log
- objection demo
comming soon
Use yolo results as input to feed to roi_ppooing
or roi_alignment
layer
coming soon
- yolo with mask demo
comming soon
You Only Look Once: Unified, Real-Time Object detection http://arxiv.org/abs/1506.02640
YOLO9000: Better, Faster, Stronger https://arxiv.org/abs/1612.08242
YOLOv3: An Incremental Improvement https://pjreddie.com/media/files/papers/YOLOv3.pdf
Faster R-CNN: Towards Real-Time Object Detection with Region Proposal Networks
Mask R-CNN