반응형
이미지를 불러올 때 convert('L')메소드를 사용하면 됩니다. 코드는 아래와 같습니다.
from PIL import Image
input_image_path = "sample1.PNG"
img = Image.open(input_image_path).convert('L')
반응형
이미지를 불러올 때 convert('L')메소드를 사용하면 됩니다. 코드는 아래와 같습니다.
from PIL import Image
input_image_path = "sample1.PNG"
img = Image.open(input_image_path).convert('L')
댓글