Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

added my data augmentation changes #24

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions src/cultionet/augment/augmentation.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,8 +132,20 @@ def augment(
bdist_aug = cv2.rotate(np.float32(bdist), deg_dict[deg])

elif 'roll' in aug:
shift = np.random.choice(range(1, int(xaug.shape[0]*0.75)+1), size=1)[0]
xaug = np.roll(xaug, shift=shift, axis=0)
ntime = int(xaug.shape[0]/nbands)
if 'p' in aug:
shift_percent = int(aug.replace('rollp', ''))/100
shift = int(ntime*shift_percent)
elif 's' in aug:
shift = int(aug.replace('rolls', ''))
else:
shift = int(aug.replace('roll', ''))
xaug_copy = np.zeros((int(xaug.shape[0]/nbands), nbands, xaug.shape[1], xaug.shape[2]))
for n in range(nbands):
xaug_copy[:, n] = xaug[ntime*n: ntime*(n+1)]
xaug_copy = np.roll(xaug_copy, shift=shift, axis=0)
for n in range(nbands):
xaug[ntime*n: ntime*(n+1)] = xaug_copy[:, n]
yaug = y.copy()
bdist_aug = bdist.copy()

Expand Down
2 changes: 1 addition & 1 deletion src/cultionet/data/create.py
Original file line number Diff line number Diff line change
Expand Up @@ -331,7 +331,7 @@ def create_image_vars(
.clip(0, 1))

# Get the band count per index
nbands = int(src_ts.gw.nbands / len(list(set([Path(fn).parent.name for fn in image]))))
nbands = len(list(set([Path(fn).parent.name for fn in image])))
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for this fix to allow the use of single-band inputs.

The variable name is correct with this change. However, this change impacts the downstream 'flip' augmentation because I was previously using nbands as ntime.

See additional modifications in PR #19

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

So I actually wanted to ask you about flipfb, I currently have it turned off. Is the intention of it to reverse time, or is it to reverse the bands? If the latter, I imagine it would be best to have it off if I am using NRGB, correct? (since I don't want it reversing those?) Thanks!


if grid_edges is not None:
# Get the training edges
Expand Down