Closed TolgaAktas closed 1 month ago
Hi @TolgaAktas, just to make sure I'm understanding correctly, you have a bunch of data that overlaps the same spatial area, but at different points in time, and you want to sample temporal stacks of data from these overlaps? If so, some more questions:
It sounds like you might need a RandomSpaceTimeSampler
or something.
Basically I am trying to design machine learning experiments in which I am:
Trying to create pairs of satellite images with different cloud cover ratios, of the same area. So the pixels need to be aligned.
Trying to create positive, anchor, negative samples for contrastive learning.
Trying to create a cloud_cover-sorted collection of images, which will be part of the machine learning training.
So the images for positive samples or x-y mapping need to be pixel-aligned, whereas for negative samples, not so much. I don't really need temporality in the data, but I need to provide data in an descending cloud_cover order.
@TolgaAktas are you still having issues? Trying to close out old issues.
Haven’t worked on it for a while, maybe consider it closed?
On Aug 21, 2024, at 8:59 AM, Adam J. Stewart @.***> wrote:
@TolgaAktas https://github.com/TolgaAktas are you still having issues? Trying to close out old issues.
— Reply to this email directly, view it on GitHub https://github.com/microsoft/torchgeo/issues/1071#issuecomment-2302440565 or unsubscribe https://github.com/notifications/unsubscribe-auth/ADX2QKZC46IXKZBGPACB2CLZSS2PBBFKMF2HI4TJMJ2XIZLTSWBKK5TBNR2WLJDUOJ2WLJDOMFWWLO3UNBZGKYLEL5YGC4TUNFRWS4DBNZ2F6YLDORUXM2LUPGBKK5TBNR2WLJDUOJ2WLJDOMFWWLLTXMF2GG2C7MFRXI2LWNF2HTAVFOZQWY5LFUVUXG43VMWSG4YLNMWVXI2DSMVQWIX3UPFYGLAVFOZQWY5LFVIZTAMJYGU2DSMJXGWSG4YLNMWUWQYLTL5WGCYTFNSBKK5TBNR2WLKRTGA3DMOBRGIZTQOFENZQW2ZNJNBQXGX3MMFRGK3FMON2WE2TFMN2F65DZOBS2YSLTON2WKQ3PNVWWK3TUUZ2G64DJMNZZJAVEOR4XAZNKOJSXA33TNF2G64TZUV3GC3DVMWUTGNRZGQZDQOJTGWBKI5DZOBS2K2LTON2WLJLWMFWHKZNKGE2TMMZVGIZTAOBXQKSHI6LQMWSWYYLCMVWKK5TBNR2WLKRTGAYTQNJUHEYTONMCUR2HS4DFUVWGCYTFNSSXMYLMOVS2UMZQGY3DQMJSGM4DRJ3UOJUWOZ3FOKTGG4TFMF2GK. You are receiving this email because you were mentioned.
Triage notifications on the go with GitHub Mobile for iOS https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675 or Android https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub.
Issue
Working with Landsat 8 data, I will have a variety of products that corresponding to similar or different scenes based row/path designation. In my research project, I am trying to figure out a convenient way to obtain a collection of images that exactly math the same area of interest pixel by pixel. For example, I will need to combine a collection of images for the same area, sorting by cloud cover ratio), but the pixel coordinates in all images need to match to the correct area.
I am able to instantiate Landsat8 dataset object with my dataset root path, but I realize that the sampling of the dataset is not necessarily index based but by bounding box based. Not sure how to utilize this, but for my training loop, how can I make sure that from my Landsat8 dataset object, I can fetch the correct pairs/tuples of images?
Fix
No response