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

"Fliplr", after applying this operation labels got disturbed #846

Open
harsh123-baba opened this issue Mar 8, 2024 · 0 comments
Open

"Fliplr", after applying this operation labels got disturbed #846

harsh123-baba opened this issue Mar 8, 2024 · 0 comments

Comments

@harsh123-baba
Copy link

Hey..
i applied augmentation using imgaug but when i applied augmentation with given code
seq = iaa.Sequential([
iaa.Affine(shear = {'x':20, 'y':0}),
iaa.Fliplr(0.5),
iaa.Sometimes(
0.5,
iaa.GaussianBlur(sigma=(0, 0.5))
),
iaa.LinearContrast((0.75, 1.5)),
iaa.Multiply((0.8, 1.2), per_channel=0.2),
], random_order=True)

so i am getting result as
test1_failed

then i applied same function by commenting flipir part so it working fine
iaa.Sequential([
iaa.Affine(shear = {'x':20, 'y':0}),
# iaa.Fliplr(0.5),
iaa.Sometimes(
0.5,
iaa.GaussianBlur(sigma=(0, 0.5))
),

so can you suggest me anyone else is facing same issue

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant