12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- import numpy as np
- from os.path import join
- from nabirds.utils import _MetaInfo
- from .base import BaseAnnotations, BBoxMixin
- class CUB_Annotations(BaseAnnotations, BBoxMixin):
- name="CUB200"
- @property
- def meta(self):
- info = _MetaInfo(
- images_folder="images",
- images_file="images.txt",
- labels_file="labels.txt",
- split_file="tr_ID.txt",
- bounding_boxes="bounding_boxes.txt",
- bounding_box_dtype=np.dtype([(v, np.int32) for v in "xywh"]),
- parts_file=join("parts", "part_locs.txt"),
- part_names_file=join("parts", "parts.txt"),
- )
- info.structure = [
- [info.images_file, "_images"],
- [info.labels_file, "labels"],
- [info.split_file, "_split"],
- [info.parts_file, "_part_locs"],
- [info.part_names_file, "_part_names"],
- [info.bounding_boxes, "_bounding_boxes"],
- ]
- return info
- def __init__(self, *args, **kwargs):
- super(CUB_Annotations, self).__init__(*args, **kwargs)
- # set labels from [1..200] to [0..199]
- self.labels -= 1
- def _load_split(self):
- assert self._split is not None, "Train-test split was not loaded!"
- uuid_to_split = {uuid: int(split) for uuid, split in zip(self.uuids, self._split)}
- self.train_split = np.array([uuid_to_split[uuid] for uuid in self.uuids], dtype=bool)
- self.test_split = np.logical_not(self.train_split)
- def _load_parts(self):
- super(CUB_Annotations, self)._load_parts()
- # set part idxs from 1-idxs to 0-idxs
- self.part_locs[..., 0] -= 1
- self._load_bounding_boxes()
|