Functionadd_gaussian_noiseAdd Gaussian noise. Args: img (Numpy array): Input image, shape (h, w, c), range [0, 1], float32. sigma (float): Noise scale (meas
lada/utils/degradations.py:424
Functionadd_gaussian_noise_ptAdd Gaussian noise (PyTorch version). Args: img (Tensor): Shape (b, c, h, w), range[0, 1], float32. scale (float | Tensor): Noise
lada/utils/degradations.py:474
Functionadd_poisson_noiseAdd poisson noise. Args: img (Numpy array): Input image, shape (h, w, c), range [0, 1], float32. scale (float): Noise scale. Defau
lada/utils/degradations.py:562
Functionadd_poisson_noise_ptAdd poisson noise to a batch of images (PyTorch version). Args: img (Tensor): Input image, shape (b, c, h, w), range [0, 1], float32.
lada/utils/degradations.py:629