albumentations-team / albumentations

Fast and flexible image augmentation library. Paper about the library: https://www.mdpi.com/2078-2489/11/2/125
https://albumentations.ai
MIT License
13.79k stars 1.61k forks source link

label w.r.t image augmentations #1496

Open xarryon opened 8 months ago

xarryon commented 8 months ago

First of all, thanks the authors' great contributations!

When I use this package, I wonder how to output a series of labels that process the image.

For example, in alb.Compose, I add { RGBShift(p = 0.2) , HueSaturationValue (p = 0.3) and RandomBrightnessContrast (p = 0.4) }. I use it to process an image. Finally, I also want to know which operation is used to process my image. For instance, RGBShift and HueSaturationValue is work but RandomBrightnessContrast not.

I wonder how to achieve this function?

Dipet commented 8 months ago

Look at ReplayCompose