-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
Description
We test a fully padded mask and this has implications as to whether we want to runNodataFiller
+-----------+
| outside |
| +-------+ |
| | inside| |
| | | |
| +-------+ |
| |
+-----------+
Each of the regions can be one of three things: all_nodata, all_data, some_nodata so the logic might look like this:
| Outside | ||||
|---|---|---|---|---|
| All nodata | Some nodata | All data | ||
| All nodata | skip | run | run | |
| Inside | Some nodata | run (edit) | run | run |
| All data | skip | skip | skip |
@dnomadb does that sound right?