多重冒号(::)在编程中的核心作用:从命名空间到代码组织
2026/6/24 23:21:07
VOCdevkit/ ├── VOC2007/ (或VOC2012) │ ├── Annotations/ # XML标注文件 │ ├── ImageSets/ │ │ ├── Main/ # 训练/验证/测试集划分文件 │ │ ├── Layout/ # 人体部位分割任务文件 │ │ └── Segmentation/ # 语义分割任务文件 │ ├── JPEGImages/ # 原始图片 │ ├── SegmentationClass/ # 语义分割标签 │ └── SegmentationObject/ # 实例分割标签CLASSES = [ 'aeroplane', 'bicycle', 'bird', 'boat', 'bottle', 'bus', 'car', 'cat', 'chair', 'cow', 'diningtable', 'dog', 'horse', 'motorbike', 'person', 'pottedplant', 'sheep', 'sofa', 'train', 'tvmonitor' ]版本 |
|---|