Posterize¶
- class mmpretrain.datasets.transforms.Posterize(bits=None, prob=0.5, **kwargs)[source]¶
Posterize images (reduce the number of bits for each color channel).
- Parameters:
bits (int, optional) – Number of bits for each pixel in the output img, which should be less or equal to 8. If None, generate from
magnitude_range
, seeBaseAugTransform
. Defaults to None.prob (float) – The probability for posterizing therefore should be in range [0, 1]. Defaults to 0.5.
**kwargs – Other keyword arguments of
BaseAugTransform
.