mmcls.datasets.pipelines.SolarizeAdd¶ class mmcls.datasets.pipelines.SolarizeAdd(magnitude, thr=128, prob=0.5)[source]¶ SolarizeAdd images (add a certain value to pixels below a threshold). Parameters magnitude (int | float) – The value to be added to pixels below the thr. thr (int | float) – The threshold below which the pixels value will be adjusted. prob (float) – The probability for solarizing therefore should be in range [0, 1]. Defaults to 0.5.