Vladimir Iglovikov

Results 192 comments of Vladimir Iglovikov

@cswwp @msat59 @folkien Added in https://github.com/albumentations-team/albumentations/pull/1953 You can check in the UI tool at https://explore.albumentations.ai/transform/CoarseDropout

I did not check the benchmark in Windows as I do not have it and I do not have issues in Linux Could some specifics of that os. 1. What...

Thanks. Makes sense. Let me think about it.

@Erotemic You may define random state for numpy random per transform and in Compose as: ```python aug.set_random_state(0) ```

```python ...: import cv2 ...: import numpy as np ...: from matplotlib import pyplot as plt ...: ...: ...: ...: rows, cols, ch = 256, 256, 11 ...: ...: img...

If ```python if noise_distribution == "gaussian": # Generate and normalize in one step, directly as float32 fields = random_generator.standard_normal( (1 if same_dxdy else 2, *image_shape[:2]), dtype=np.float32, ) ``` could be...