딥러닝/컴퓨터비전 4

[컴퓨터비전] 데이터 증강 종류 및 코드 (Pytorch, Albumentations, Imgaug)

데이터 증강 (Data Augmentation) 데이터 증강은 데이터 수를 늘려, Overfitting을 방지하고, 모델이 Generalization을 갖도록 한다. 이미지에서 데이터 증강에는 다양한 종류가 있다. 아래 그림은 MNIST(28px*28px)를 이용한 이미지 증강 예시이다. 하나씩 살펴보자. 코드는 Pytorch 기준이다. Pytorch의 torchvision 제공import torchvision.transforms as transforms 1. 뒤집기(Flip)horizon = transforms.RandomHorizontalFlip(p=1)vertical = transforms.RandomVerticalFlip(p=1)  P는 Probability로 이미지 증강을 적용할 확률값이다. 흔..

[컴퓨터비전] Cityscapes annotation을 COCO (.json)로 변경하는 방법

Cityscapes 2 COCO참고 포스팅: https://tillbeemelmanns.github.io/2020/10/10/convert-cityscapes-to-coco-dataset-format.html How to convert Cityscapes dataset to CoCo dataset format - Till BeemelmannsCityscapes is a great dataset for semantic image segmentation which is widely used in academia in the context of automated driving. This dataset provides pixel-precise class annotations on the full image fr..

[컴퓨터비전] KITTI dataset label (.txt) 파일을 PASCAL VOC label (.xml)로 변경하는 방법

KITTI 2 PASCAL참고 깃허브: https://github.com/umautobots/vod-converter?tab=readme-ov-file GitHub - umautobots/vod-converter: Convert between visual object detection datasetsConvert between visual object detection datasets. Contribute to umautobots/vod-converter development by creating an account on GitHub.github.com 위 깃허브에서 코드 다운받은 후, 폴더(vod-converter-master)에 아래와 같이 필요한 내용 추가하기.ideadatasetsmydata-ki..

[컴퓨터비전] 윈도우 환경에서 detectron2 설치하는 방법

공지: 게시글 마지막에 있는 ‘참고 사이트3’ 을 참고해서 detectron2를 설치하였습니다. Install Detectron2Meta에서 나온 ‘detectron2’를 윈도우11 및 CUDA 11 환경에서 설치하는 과정을 설명합니다.더보기운영체제: Window 11 Pro GPU: NVIDIA GeForce RTX 3080 Ti (sm_86 CUDA 지원, 3080 Ti에 호환되는 CUDA Toolkit은 11.2 이상) CUDA: 11.6 anaconda: 2022.10 windows-x86_64 release python: 3.9.13 Pytorch: 1.12.0 Microsoft Visual Studio: Community 2022 공식 홈페이지 detectron2 요구사항: https://de..