Skip to content

Commit 46a1d86

Browse files
authored
Update generate_synthetic_dataset.py
generates inverted images now
1 parent 819755b commit 46a1d86

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

generate_synthetic_dataset.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -292,9 +292,9 @@ def erode_dilate(img, noisy_img):
292292
def write_images(img, noisy_img, debug_img):
293293
global img_count
294294

295-
img = cv2.resize(img, (0,0), fx = 1/scale_w, fy = 1/scale_h)
296-
noisy_img = cv2.resize(noisy_img, (0,0), fx = 1/scale_w, fy = 1/scale_h)
297-
debug_img = cv2.resize(debug_img, (0,0), fx = 1/scale_w, fy = 1/scale_h)
295+
img = 255 - cv2.resize(img, (0,0), fx = 1/scale_w, fy = 1/scale_h)
296+
noisy_img = 255 - cv2.resize(noisy_img, (0,0), fx = 1/scale_w, fy = 1/scale_h)
297+
debug_img = 255 - cv2.resize(debug_img, (0,0), fx = 1/scale_w, fy = 1/scale_h)
298298

299299
if img_count <= train_num:
300300
cv2.imwrite(os.path.join(data_dir, train_dir, imgs_dir, '{}.jpg'.format(str(img_count).zfill(6))), img)

0 commit comments

Comments
 (0)