Commit c32c74cb authored by WillBrennan's avatar WillBrennan

Changed output images to main.py

parent 6f4a23c4
...@@ -147,7 +147,7 @@ if __name__ == '__main__': ...@@ -147,7 +147,7 @@ if __name__ == '__main__':
img_col = cv2.imread(image_path, 1) img_col = cv2.imread(image_path, 1)
img_msk = process(img_col, args=args) img_msk = process(img_col, args=args)
if not args.display: if not args.display:
cv2.imshow('img_col', img_col) scripts.display('img_col', img_col)
cv2.imshow('img_msk', img_msk) scripts.display('img_msk', img_msk)
cv2.imshow('img_skn', cv2.bitwise_and(img_col, img_col, mask=img_msk)) scripts.display('img_skn', cv2.bitwise_and(img_col, img_col, mask=img_msk))
cv2.waitKey(0) cv2.waitKey(0)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment