티스토리 뷰
COCO Dataset
instances_minival2014.json
https://dl.dropboxusercontent.com/s/o43o90bna78omob/instances_minival2014.json.zip?dl=0
instances_valminusminival.json
https://dl.dropboxusercontent.com/s/s3tw5zcg7395368/instances_valminusminival2014.json.zip?dl=0
혹은
http://datasets.d2.mpi-inf.mpg.de/hosang17cvpr/coco_minival2014.tar.gz
COCO API
def __init__
# coco 불러오기 및 Annotation 불러오기
self.coco = COCO( [Annotation의 경로] )
# Img ID List 불러오기 (List에 랜덤으로, [3524, 15123, 23, 4 ...])
self.img_id = list(self.coco.imgToAnns.keys())
self.img_id = list(self.coco.getImgIds())
# category List 불러오기 (List, [1, 2, 3, ...])
self.coco_ids = sorted(self.coco.getCatIds())
# Annotation ID List 불러오기 (List, [12, 1232, 43412, ...])
self.anno_ids = self.coco.getAnnIds()
# 특정 Image Id의 Annotation ID 불러오기
self.anno_ids = self.coco.getAnnIds(imgIds=img_id)
def __getitem__
각 index 에 대하여
# image ID 변수에 저장
img_id = self.img_id[index]
# image 특징 불러오기 (loadImgs)
('license', 'url', 'file_name', 'height', 'width', 'date_captured', 'id')
# 파일 이름
self.coco.loadImgs(ids=img_id)[0]('file_name')
# width
self.coco.loadImgs(ids=img_id)[0]('width')
# Annotaion 불러오기
anno_id = self.coco.getAnnIds(imgIds=img_id)
anno = self.coco.loadAnns(ids=anno_id)
'CV & ML > PyTorch' 카테고리의 다른 글
[Pytorch] set device 그래픽카드 지정하기 (0) | 2022.02.21 |
---|---|
Pytorch Tensor를 .npy 파일로 저장/불러오기 (0) | 2020.03.30 |
각 CUDA 버전에 맞는 Pytorch 버전 확인하기 (0) | 2020.02.06 |
[Pytorch] Error: no kernel image is available for execution on the device (0) | 2020.01.15 |
PyTorch 옛날 버전 설치 (0) | 2019.10.27 |
- Total
- Today
- Yesterday
- CUDA
- Novel View Synthesis
- numpy
- MySQL
- java
- Docker
- ubuntu
- MacOS
- nginx
- error
- vscode
- Python
- Neural Radiance Field
- SSH
- git
- GPU
- Android
- GaussianSplatting
- Computer Vision
- 3Dvision
- pytorch
- Deep Learning
- nvidia
- nerf
- Anaconda
- Macbook
- Object Detection
- 2-stage Detector
- 우분투
- Machine Learning
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | ||
6 | 7 | 8 | 9 | 10 | 11 | 12 |
13 | 14 | 15 | 16 | 17 | 18 | 19 |
20 | 21 | 22 | 23 | 24 | 25 | 26 |
27 | 28 | 29 | 30 |