BRAINSia / SINAPSE

SINAPSE is an interdisciplinary team of computer scientists, software engineers, and medical investigators.
0 stars 1 forks source link

Generalize Image Augmentation Script #4

Closed abpwrs closed 5 years ago

abpwrs commented 5 years ago

User Story

As an AlgorithmDev, I want to easily augment a dataset of images via rotations and axis-flipping so that I can develop more robust models with less data.

Detailed Description

The current script for augmenting 2D Images loads every image in the dataset into RAM, and then performs the augmentation, and then writes all images back. This clearly limits the size of the dataset that can be augmented. This feature will alter the existing framework to work on one image at a time, which can then be run on all images using BASH scripting.

Tasks to be completed

Acceptance Criteria