зеркало из https://github.com/microsoft/torchgeo.git
Fix image path
This commit is contained in:
Родитель
08608b56fb
Коммит
63b628db73
|
@ -102,7 +102,15 @@ class VHR10(VisionDataset):
|
|||
the image
|
||||
"""
|
||||
path = self.coco.loadImgs(id)[0]["file_name"]
|
||||
return Image.open(os.path.join(self.root, path)).convert("RGB")
|
||||
return Image.open(
|
||||
os.path.join(
|
||||
self.root,
|
||||
self.base_folder,
|
||||
"NWPU VHR-10 dataset",
|
||||
"positive image set",
|
||||
path,
|
||||
)
|
||||
).convert("RGB")
|
||||
|
||||
def _load_target(self, id: int) -> Any:
|
||||
"""Load the annotations for a single image.
|
||||
|
|
Загрузка…
Ссылка в новой задаче