In [1]:from Custom.mediahelper import show_image_from_path # 개발자 정의 모듈from Custom.mediahelper import show_video_as_html # 개발자 정의 모듈5. 파일 저장¶이미지 저장¶In [2]:import cv2img = cv2.imread('../Media/images/img.png', cv2.IMREAD_GRAYSCALE)cv2.imshow('img', img)cv2.waitKey(0)cv2.destroyAllWindows()result = cv2.imwrite('../Media/images/img_save.png', img)print(result)show_image_from_path('../Media/images/im..