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?
We test a fully padded mask and this has implications as to whether we want to
runNodataFillerEach of the regions can be one of three things:
all_nodata,all_data,some_nodataso the logic might look like this:@dnomadb does that sound right?