Data augmentation은?
갖고 있는 데이터셋을 여러 가지 방법으로 증강시켜(augment) 실질적인 학습 데이터셋의 규모를 키울 수 있는 방법
Flipping
Gray scale
Saturation
Brightness
Rotation
Center Crop
그 외
1) 준비하기
2) Flip 해보기
tf.image.random_crop(value, size)
size = [crop_height, crop_width, 3]
tf.image.random_brightness(image, max_delta)
max_dalta
-> float, must be non-negative.이미지 증강을 위한 Python 라이브러리
np.array
사용)import albumentations
- Affine()
- 이미지의 스케일(scale)을 조절하거나 평행이동, 또는 회전 등의 변환을 줄 수 있음
- RandomCrop()
- 이미지를 랜덤하게 crop 할 수 있음
- MedianBlur()
- 블러 처리를 할 수 있음
- ToGray()
- 이미지를 흑백으로 변환
- MultiplicativeNoise()
- 이미지에 노이즈를 생성
transform = A.Compose(
[A.ToGray(p=1),
A.MultiplicativeNoise(multiplier=[0.5, 1.5],
elementwise=True, per_channel=True, p=1),
A.RandomCrop(width=256, height=256)
]
)