acannistra / planet-snowcover

Can we use Planet high-resolution imagery and machine learning to assess snow cover?
https://planet-snowcover.readthedocs.io/en/latest/
MIT License
20 stars 7 forks source link

create torch.Dataset which can merge tiles from multiple images #14

Closed acannistra closed 5 years ago

acannistra commented 5 years ago

related to #13 : want to create a Dataset which can represent images loaded from multiple tilesets (which might overlap).

For example:

image tiles
002.tif a/b/c.tif, d/e/f.tif
003.tif d/e/f.tif, /x/y/z.tif

Should create Dataset like

tile mask
a/b/c.tif mask/a/b/c.tif
d/e/f.tif mask/d/e/f.tif
/d/e/f_1.tif mask/d/e/f.tif
/x/y/z.tif mask/x/y/z.tif
acannistra commented 5 years ago

This is done in #15