using prepared binarized images in the case of augmentation

pull/18/head
vahidrezanezhad 4 months ago
parent f31219b1c9
commit 9904846776

@ -690,6 +690,13 @@ def provide_patches(imgs_list_train, segs_list_train, dir_img, dir_seg, dir_flow
pass
if binarization:
if dir_img_bin:
img_bin_corr = cv2.imread(dir_img_bin + '/' + img_name+'.png')
cv2.imwrite(dir_flow_train_imgs + '/img_' + str(indexer) + '.png',
resize_image(img_bin_corr, input_height, input_width))
else:
cv2.imwrite(dir_flow_train_imgs + '/img_' + str(indexer) + '.png',
resize_image(otsu_copy(cv2.imread(dir_img + '/' + im)), input_height, input_width))

Loading…
Cancel
Save