BradNeuberg / cloudless

Deep learning pipeline for orbital satellite data for detecting clouds
Apache License 2.0
300 stars 73 forks source link

Use localization implementation to get bounding boxes #7

Open BradNeuberg opened 8 years ago

jhauswald commented 8 years ago

Difference between Detection and Localization Fig 1 here shows the difference for those interested.

All detection/localization implementations that I've read thus far start from some sort of sliding window approach where you simply search the image with bounding boxes of varying sizes and scales to find the exact location of the object. It's a pretty straight forward approach that's computationally intensive. The following papers all use that approach as their baseline and show how they improve speed and accuracy over it (some high level notes about each but I'd read them for more in depth info!):

BradNeuberg commented 8 years ago

Sounds like the approach we will use is:

http://arxiv.org/pdf/1311.2524v5.pdf

via this Python open source library:

https://github.com/jhauswald/selective_search_py

Updating this issue to indicate that we found an algorithm to use for iteration 2.