I'm looking to detect boats in large satellite scenes of the ocean. I'm successfully applied matterport's Mask-RCNN setup on small subsets of satellite imagery but it is way too slow to analyze huge images like WorldView. I'm looking for something fast that can do bounding boxes, is in python, implemented in Keras, and ideally optimized (or well documented so I can optimize it) for satellite imagery. Any suggestions?
I've found a couple promising leads:
- You Only Look Twice, YOLO variant optimized for satellite imagery but built in C and not super well documented
- RasterVision: a general python based framework for applying CNNs to satellite imagery, looks promising but nascent
- This Kaggle competition has some promising info but at ~18 months old is somewhat outdated:
I may try to customize this implementation of RetinaNet in Keras for satellite imagery following the suggestions from the YOLT paper but would love other suggestions!