-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerate_noise.py
32 lines (24 loc) · 977 Bytes
/
generate_noise.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import iio
import numpy as np
## TRAIN ISO3200
for seq in range(240):
print("train", seq)
for i in range(0, 498+3, 3):
#read gt
gt = iio.read("train/gt_iso3200/{:03d}/{:08d}.tiff".format(seq, i))
n, m, c = gt.shape
#add noise to the GT
noisy = gt + np.sqrt( (8.0034*gt-2043.51144).clip(0, np.inf) )*np.random.randn(n,m,c)
#store the output
iio.write("train/noisy_iso3200/{:03d}/{:08d}.tiff".format(seq, i), noisy)
## VALIDATION ISO3200
for seq in range(30):
print("validation", seq)
for i in range(0, 498+3, 3):
#read gt
gt = iio.read("validation/gt_iso3200/{:03d}/{:08d}.tiff".format(seq, i))
n, m, c = gt.shape
#add noise to the GT
noisy = gt + np.sqrt( (8.0034*gt-2043.51144).clip(0, np.inf) )*np.random.randn(n,m,c)
#store the output
iio.write("validation/noisy_iso3200/{:03d}/{:08d}.tiff".format(seq, i), noisy)